Update movie-box gist #6146
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 movie-box gist | |
on: | |
schedule: | |
- cron: '1 0 * * *' | |
watch: | |
types: [started] | |
jobs: | |
build: | |
name: Updating movie-box gist | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
ref: master | |
- name: Installing dependencies | |
run: npm install | |
- name: Executing movie-box action | |
uses: ./ | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
GIST_ID: ${{ secrets.GIST_ID }} | |
TRAKT_ID: ${{ secrets.TRAKT_ID }} | |
TRAKT_USERNAME: ${{ secrets.TRAKT_USERNAME }} | |
MOVIE_BOX_MODE: ${{ secrets.MOVIE_BOX_MODE }} |