Run IPT Inspector #82
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: Run IPT Inspector | |
on: | |
schedule: | |
- cron: '0 8 * * 1' # Runs at 8:00 AM every day | |
jobs: | |
run-my-container: | |
runs-on: ubuntu-latest # Specifies the runner environment. | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 # Checks out your repository under $GITHUB_WORKSPACE, so your workflow can access it. | |
- name: Run a Docker container | |
run: | | |
docker pull gbifnorway/ipt-integrity-inspector:latest # Replace with your image name and tag. | |
docker run -e DISCORD_WEBHOOK=${{ secrets.DISCORD_WEBHOOK }} -e SETTINGS=${{ vars.SETTINGS }} gbifnorway/ipt-integrity-inspector:latest |