Skip to content

Jobs at Apple [Global] #194

Jobs at Apple [Global]

Jobs at Apple [Global] #194

Workflow file for this run

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'