Jobs at Apple [Global] #197
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: Jobs at Apple [Global] | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v4 | |
- name: setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: install python packages | |
run: pip install -r requirements.txt | |
- name: execute py script | |
env: | |
BOTPOST_API: ${{ secrets.BOTPOST_API }} | |
BOTPOST_CHAT_ID: ${{ secrets.BOTPOST_CHAT_ID }} | |
run: python3 Jobs.py -d | |
- name: commit files | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: 'auto: Jobs at Apple' |