Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/close-bugs-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # every day at midnight

permissions:
issues: write # Required to label and close stale bug issues via actions/stale

jobs:
stale:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/close-features-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # every day at midnight

permissions:
issues: write # Required to label and close feature request issues via actions/stale

jobs:
stale:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/dotnet-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
- cron: '0 0 * * 1'
workflow_dispatch:

permissions:
contents: write # Required to push the SDK version upgrade branch
pull-requests: write # Required to create the upgrade pull request via gh cli

jobs:
dotnet-update:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/patch_update_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
- 'patches/runner-main-sdk8-*.patch'
- 'patches/last_processed_commit.txt'

permissions:
contents: write # Required to push patch updates and branches
pull-requests: write # Required to create pull requests via peter-evans/create-pull-request

jobs:
update-patches:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/patch_update_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
- "patches/runner-sdk8-*.patch"
- "patches/last_processed_tag.txt"

permissions:
contents: write # Required to push patch updates and release branches
pull-requests: write # Required to create pull requests via peter-evans/create-pull-request

jobs:
update-patches:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
paths:
- releaseVersion

permissions:
contents: write # Required to create GitHub releases and upload release assets

jobs:
check:
if: startsWith(github.ref, 'refs/heads/releases/') || github.ref == 'refs/heads/main'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/stale-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 1' # every monday at midnight

permissions:
issues: write # Required to label and close stale issues via actions/stale

jobs:
stale:
runs-on: ubuntu-latest
Expand Down
Loading