-
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
588 additions
and
461 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Mark stale issues | ||
|
||
on: | ||
schedule: | ||
- cron: "0 8 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
days-before-stale: 30 | ||
days-before-close: 5 | ||
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days." | ||
stale-issue-label: "stale" | ||
exempt-issue-labels: "Bug, Bugfix in progress, Fixed in next release, Internal, Never stale" | ||
exempt-all-issue-assignees: true | ||
operations-per-run: 300 | ||
close-issue-reason: "not_planned" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
name: Syncing branches | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v3.1.0 | ||
- name: Opening pull request | ||
id: pull | ||
uses: tretuna/[email protected] | ||
|
@@ -20,7 +20,7 @@ jobs: | |
FROM_BRANCH: 'master' | ||
TO_BRANCH: 'development' | ||
- name: Label the pull request to ignore for release note generation | ||
uses: actions-ecosystem/[email protected].0 | ||
uses: actions-ecosystem/[email protected].3 | ||
with: | ||
labels: internal | ||
repo: ${{ github.repository }} | ||
|
Oops, something went wrong.