Spaces:
Runtime error
Runtime error
| name: Chore | |
| on: | |
| pull_request: | |
| types: [opened, edited] | |
| jobs: | |
| update-pr-title: | |
| if: github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'edited') | |
| runs-on: instadeep-ci | |
| container: | |
| image: ghcr.io/catthehacker/ubuntu:runner-latest | |
| credentials: | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.github_token }} | |
| permissions: write-all | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| fetch-depth: 0 | |
| - name: Update PR Title and Body | |
| uses: ./.github/actions/tools/pr-title-generator | |
| with: | |
| github-token: ${{ github.token }} | |