Notify #6656
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: Notify | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
workflow_dispatch: | |
push: | |
branches: [main] | |
permissions: | |
contents: write | |
jobs: | |
notify: | |
name: Notify about new dependents | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
fetch-depth: 1 | |
- name: Install github-dependents-info | |
run: pip install -U github-dependents-info | |
- name: Notify ratatui dependents | |
shell: bash | |
run: ./ratatui-notify.sh | |
env: | |
WEBHOOK_URL: ${{ vars.WEBHOOK_URL }} | |
REPO: ${{ vars.RATATUI_REPO }} | |
- name: Notify tui-rs dependents | |
shell: bash | |
run: ./ratatui-notify.sh | |
env: | |
WEBHOOK_URL: ${{ vars.WEBHOOK_URL }} | |
REPO: ${{ vars.TUI_RS_REPO }} | |
- name: Commit | |
run: | | |
git config user.name 'github-actions[bot]' | |
git config user.email 'github-actions[bot]@users.noreply.github.com' | |
set +e | |
git add *.txt | |
git commit -m "Update data" | |
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git main |