Skip to content

Tooling

Tooling #334

Workflow file for this run

name: Tooling
on:
schedule:
- cron: 0 4 * * *
workflow_dispatch: ~
permissions: read-all
jobs:
tooling:
name: Update
runs-on: ubuntu-22.04
permissions:
contents: write # To push a commit
pull-requests: write # To open a Pull Request
steps:
- name: Checkout repository
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- name: Create token to create Pull Request
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
id: automation-token
with:
app_id: ${{ secrets.AUTOMATION_ID }}
private_key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}
- name: Update tooling
uses: ./pr
with:
labels: dependencies
max: 2
token: ${{ steps.automation-token.outputs.token }}