Skip to content

Python Ecosystem

Python Ecosystem #457

Workflow file for this run

name: Python Ecosystem
on:
schedule:
- cron: 0 23 * * *
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "pip-compile"
run: |
pip install pip-tools
pip-compile --pre requirements.in
- name: Post to a Slack channel
if: failure()
id: slack
uses: slackapi/slack-github-action@v1
with:
channel-id: C0598GTCLGH
slack-message: ":gyrophare: Python ecosystem version check failed"
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}