Skip to content

Import data

Import data #23

Workflow file for this run

name: Import data
on:
schedule:
- cron: '0 11 * * 0' # Run every Sunday at 11am UTC
jobs:
run-script:
runs-on: ubuntu-latest
env:
HINDSIGHT_PAT_TOKEN: ${{ secrets.HINDSIGHT_PAT_TOKEN }}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install pygithub
run: |
python -m pip install pygithub
- name: Run import script
run: |
python import_data_to_readme.py
- name: Add and commit
uses: EndBug/add-and-commit@v9
with:
add: './plots/*'
message: 'update hindsight data from remote'
default_author: github_actions
- name: Post to a Slack channel
id: slack
uses: slackapi/[email protected]
with:
# Slack channel id, channel name, or user id to post message.
# See also: https://api.slack.com/methods/chat.postMessage#channels
# You can pass in multiple channels to post to by providing a comma-delimited list of channel IDs.
channel-id: 'core-compchem'
# For posting a simple plain text message
slack-message: "ASAP-hindsight data has been updated! Go check it out @ https://github.com/asapdiscovery/hindsight-public :sunglasses: :sunglasses: :sunglasses:"
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}