This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
Solana v1.17 uses the same Solana platform-tools v1.37 and Rust v1.68.0 as Solana v1.16 #4
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
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" |