Skip to content

Update test-workflow.yml #2

Update test-workflow.yml

Update test-workflow.yml #2

Workflow file for this run

on:
push:
branches: ["julienduchesne/test-workflow"]
jobs:
job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.PUBLISH_APP_ID }}
private_key: ${{ secrets.PUBLISH_APP_PRIVATE_KEY }}
installation_id: ${{ secrets.PUBLISH_APP_INSTALLATION_ID }}
- name: test-pr
run: echo "test" > README.md
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ steps.generate_token.outputs.token }}