Jason Lyu
4 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
8 additions and
3 deletions
-
.github/workflows/docker.yml
-
.github/workflows/linter.yml
-
.github/workflows/stale.yml
|
@ -53,7 +53,7 @@ jobs: |
|
|
|
|
|
|
|
|
- name: Build and Push (dev) |
|
|
- name: Build and Push (dev) |
|
|
if: github.ref == 'refs/heads/main' |
|
|
if: github.ref == 'refs/heads/main' |
|
|
uses: docker/build-push-action@v3 |
|
|
uses: docker/build-push-action@v6 |
|
|
with: |
|
|
with: |
|
|
context: . |
|
|
context: . |
|
|
push: true |
|
|
push: true |
|
@ -66,7 +66,7 @@ jobs: |
|
|
|
|
|
|
|
|
- name: Build and Push (latest) |
|
|
- name: Build and Push (latest) |
|
|
if: startsWith(github.ref, 'refs/tags/') |
|
|
if: startsWith(github.ref, 'refs/tags/') |
|
|
uses: docker/build-push-action@v5 |
|
|
uses: docker/build-push-action@v6 |
|
|
with: |
|
|
with: |
|
|
context: . |
|
|
context: . |
|
|
push: true |
|
|
push: true |
|
|
|
@ -14,7 +14,7 @@ jobs: |
|
|
lint: |
|
|
lint: |
|
|
runs-on: ubuntu-latest |
|
|
runs-on: ubuntu-latest |
|
|
steps: |
|
|
steps: |
|
|
- uses: actions/checkout@v3 |
|
|
- uses: actions/checkout@v4 |
|
|
|
|
|
|
|
|
- name: Setup Go |
|
|
- name: Setup Go |
|
|
uses: actions/setup-go@v5 |
|
|
uses: actions/setup-go@v5 |
|
|
|
@ -1,5 +1,10 @@ |
|
|
name: Mark stale issues and pull requests |
|
|
name: Mark stale issues and pull requests |
|
|
|
|
|
|
|
|
|
|
|
permissions: |
|
|
|
|
|
contents: write |
|
|
|
|
|
issues: write |
|
|
|
|
|
pull-requests: write |
|
|
|
|
|
|
|
|
on: |
|
|
on: |
|
|
schedule: |
|
|
schedule: |
|
|
- cron: "0 10 * * *" |
|
|
- cron: "0 10 * * *" |
|
|