quote #144
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: Update Slack. | |
concurrency: | |
group: slack | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'docs/_data/sessions.yaml' | |
- 'docs/_data/videos.yaml' | |
- 'docs/_data/gtn.json' | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
# BEGIN Dependencies | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
architecture: 'x64' | |
- name: Install dependencies | |
run: | | |
pip install -r slack-utils/requirements.txt | |
# END Dependencies | |
- name: Update Channels | |
run: | | |
python slack-utils/configure-channels.py | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.slack_bot_token }} | |
- name: Update Bookmarks for Managed Channels | |
run: | | |
python slack-utils/bookmarks-update.py | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.slack_bot_token }} |