| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,22 @@ | |||
| 1 | + name: license update | ||
| 2 | + on: | ||
| 3 | + schedule: | ||
| 4 | + # 00:00:00 every Monday | ||
| 5 | + # https://crontab.guru/#0_0_*_*_1 | ||
| 6 | + - cron: "0 0 * * 1" | ||
| 7 | + workflow_dispatch: | ||
| 8 | + | ||
| 9 | + jobs: | ||
| 10 | + update_routes: | ||
| 11 | + runs-on: ubuntu-latest | ||
| 12 | + steps: | ||
| 13 | + - uses: actions/checkout@v2 | ||
| 14 | + - run: "./tools/license-builder.sh" # run the license builder tool | ||
| 15 | + - uses: gr2m/create-or-update-pull-request-action@v1.x # create a PR or update the Action's existing PR | ||
| 16 | + env: | ||
| 17 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| 18 | + with: | ||
| 19 | + title: "doc: run license-builder" | ||
| 20 | + body: "License is likely out of date. This is an automatically generated PR by the `license-builder.yml` GitHub Action, which runs `license-builder.sh` and submits a new PR or updates an existing PR." | ||
| 21 | + commit-message: 'doc: run license-builder' | ||
| 22 | + labels: meta | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments