-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
48dc32e
commit dece20d
Showing
197 changed files
with
11,691 additions
and
5,048 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Close new issues | ||
|
||
on: | ||
issues: | ||
types: [opened, reopened] | ||
|
||
jobs: | ||
comment-and-close: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- shell: bash | ||
env: | ||
ISSUE_NUMBER: ${{ github.event.issue.number }} | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
COMMENT: > | ||
This repository is no longer in use. Please re-open this | ||
issue in the agave repo: https://github.com/anza-xyz/agave | ||
run: > | ||
gh issue close "$ISSUE_NUMBER" --comment "$COMMENT" |
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,20 @@ | ||
name: Close new pull requests | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened] | ||
|
||
jobs: | ||
comment-and-close: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- shell: bash | ||
env: | ||
PR_NUMBER: ${{ github.event.pull_request.number }} | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_REPO: ${{ github.repository }} | ||
COMMENT: > | ||
This repository is no longer in use. Please re-open this | ||
pull request in the agave repo: https://github.com/anza-xyz/agave | ||
run: > | ||
gh pr close "$PR_NUMBER" --comment "$COMMENT" |
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
Oops, something went wrong.