Skip to content

Commit

Permalink
chore: Sync Files - 2023/04/20 -- [bot] synced local '.github/workflo…
Browse files Browse the repository at this point in the history
…ws/' with remote 'sync-files/workflows/generic/'
  • Loading branch information
1 parent 50bedbf commit 7a78a02
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ concurrency:

jobs:
codeball-review:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 10
if: ${{ !github.event.pull_request.draft }}
name: Run Codeball Code Review
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/delete-disabled-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,15 @@ on:
required: false
default: "true"
schedule:
# run twice a week on Sunday and Thursday at 00:00
- cron: '0 0 * * 0,4'
- cron: '0 0 * * 4' # At 00:00, only on Thursday

permissions:
actions: write
contents: read

jobs:
delete-obsolete-workflows:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 15
if: inputs.purge-obsoletes == true
steps:
Expand All @@ -33,7 +32,7 @@ jobs:
token: ${{ inputs.github-token || secrets.GITHUB_TOKEN }}

delete-disabled-workflows:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 15
if: inputs.delete-disabled == true
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: "Sync Available Github Labels"
on:
workflow_dispatch:
schedule:
- cron: "30 4 * * *"
- cron: "30 4 * * 0"
push:
paths:
- .github/config/labels.yml
Expand All @@ -25,7 +25,7 @@ concurrency:
jobs:
sync-labels:
name: Sync Github Labels
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr-actions-skip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ concurrency:
jobs:
lint-actions-workflows:
name: Lint Actions Workflows
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 5
if: ${{ !github.event.pull_request.draft }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ concurrency:
jobs:
lint-actions-workflows:
name: Lint Actions Workflows
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-labeller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ permissions:
jobs:
pr-labeller:
name: "Pull Request Labeller"
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 5
if: ${{ !github.event.pull_request.draft }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: "Check for TODOs and create or update issues"
on:
workflow_dispatch:
schedule:
- cron: "0 15 * * 6,3" # 15:00 UTC on Saturday = 01:00 AEST on Sunday and Thursday
- cron: "0 15 * * 6"

permissions:
issues: write
Expand All @@ -19,7 +19,7 @@ concurrency:

jobs:
todo-issues:
runs-on: "ubuntu-22.04"
runs-on: "ubuntu-latest"
timeout-minutes: 15
steps:
- uses: "actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab" # v3
Expand Down

0 comments on commit 7a78a02

Please sign in to comment.