mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-22 22:56:07 +00:00
977eee5f6e
* Act on CI results: fix as per what GitHub Actions is requesting Seems to have worked up until recently, but then it started breaking :shrug * Name the workflow a little better
22 lines
453 B
YAML
22 lines
453 B
YAML
---
|
|
name: Update 3rd party licenses (automation)
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 12 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update:
|
|
name: Update 3rd party licenses
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '14'
|
|
- run:
|
|
./.github/workflows/update_3rd_party_licenses.sh
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|