Update metadata files for APM #42
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 metadata files for APM | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 1 1,15 * *" | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
auto-update-versions: | |
name: Update metadata files for APM | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure git | |
run: | | |
git config user.name pauljwil | |
git config user.email [email protected] | |
- run: ./scripts/update-all.sh | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |