Archive GitHub Pages #16
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: Archive GitHub Pages | |
on: | |
schedule: | |
- cron: "20 4 1 * *" | |
workflow_dispatch: | |
inputs: | |
dry_run: | |
description: Run without actually submitting URL | |
type: boolean | |
jobs: | |
archive: | |
name: Submit URL to Internet Archive | |
runs-on: ubuntu-latest | |
steps: | |
- uses: caltechlibrary/[email protected] | |
with: | |
debug: true | |
dry_run: ${{github.event.inputs.dry_run || false}} |