-
Notifications
You must be signed in to change notification settings - Fork 13
46 lines (39 loc) · 1008 Bytes
/
slack.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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 }}