This repository has been archived by the owner on Jan 15, 2025. It is now read-only.
Update README.md #6
Workflow file for this run
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: Deprecation Warning | |
on: | |
pull_request: | |
types: | |
- opened | |
jobs: | |
post-deprecation-message: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add deprecation message as a comment | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const message = ` | |
### 🚨 This Repository is Deprecated | |
This repository is no longer actively maintained. Please use the new repository for future updates and contributions: | |
👉 **[New Repository](https://github.com/melisource/fury_mobile-dependencies-allowlist)** 👈 | |
If you have any questions, refer to the new repository or contact the maintainers. | |
`; | |
github.rest.issues.createComment({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.payload.pull_request.number, | |
body: message, | |
}); |