feat(docs): add guide for setting up Telegram bot notifications (#483) #164
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: Automatic Feed Request | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
check_feeds: | |
name: Run automatic feed request | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./automations | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v2 | |
with: | |
version: "0.4.7" | |
- name: Set up python | |
run: uv python install | |
- name: Install dependencies | |
run: uv sync | |
- name: Generate issues file | |
run: uv run check_new_feed.py | |
- uses: JasonEtco/create-an-issue@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
filename: automations/issues.md |