Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 33eb07f62d | |||
| 9141ea72f2 | |||
| 6df9de5468 | |||
| 206dd07aca | |||
| dc02275ad7 | |||
| e6d6bca5cc | |||
| 19a0a6e383 | |||
| fe7ea535a8 |
@@ -10,7 +10,7 @@ jobs:
|
|||||||
issues: write
|
issues: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v5
|
- uses: actions/stale@v9
|
||||||
with:
|
with:
|
||||||
days-before-issue-stale: 30
|
days-before-issue-stale: 30
|
||||||
days-before-issue-close: 14
|
days-before-issue-close: 14
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ jobs:
|
|||||||
- run: go mod vendor
|
- run: go mod vendor
|
||||||
|
|
||||||
# Ruby is required for licensed
|
# Ruby is required for licensed
|
||||||
- uses: ruby/setup-ruby@5f19ec79cedfadb78ab837f95b87734d0003c899
|
- uses: ruby/setup-ruby@50ba3386b050ad5b97a41fcb81240cbee1d1821f
|
||||||
with:
|
with:
|
||||||
ruby-version: "3.2"
|
ruby-version: "3.2"
|
||||||
|
|
||||||
|
|||||||
+24
-14
@@ -1,16 +1,26 @@
|
|||||||
project_name: gh
|
project_name: actions/actions-sync
|
||||||
|
|
||||||
builds:
|
builds:
|
||||||
- <<: &build_defaults
|
- id: build
|
||||||
binary: bin/actions-sync
|
goos:
|
||||||
id: macos
|
- linux
|
||||||
goos: [darwin]
|
- darwin
|
||||||
goarch: [amd64, arm64]
|
- windows
|
||||||
- <<: *build_defaults
|
goarch:
|
||||||
id: linux
|
- amd64
|
||||||
goos: [linux]
|
- arm64
|
||||||
goarch: [amd64, arm64]
|
binary: bin/actions-sync
|
||||||
- <<: *build_defaults
|
ignore:
|
||||||
id: windows
|
- goos: windows
|
||||||
goos: [windows]
|
goarch: arm64
|
||||||
goarch: [amd64]
|
env:
|
||||||
|
- CGO_ENABLED=0
|
||||||
|
release:
|
||||||
|
github:
|
||||||
|
owner: actions
|
||||||
|
name: actions-sync
|
||||||
|
# Create the release as a draft so it can be tested before being published
|
||||||
|
# To test, go to the Actions tab and run the "Actions Sync E2E Sanity Test" workflow
|
||||||
|
draft: true
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -7,4 +7,4 @@ test -z "${DEBUG:-}" || {
|
|||||||
set -x
|
set -x
|
||||||
}
|
}
|
||||||
|
|
||||||
go build -o bin/actions-sync main.go
|
CGO_ENABLED=0 go build -o bin/actions-sync main.go
|
||||||
|
|||||||
Reference in New Issue
Block a user