Feat/test branch 4 #75
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
# This workflow isn't supposed to do something valuable | |
# it's just a workflow test that it can be triggered by a PR | |
name: PR Update | |
on: | |
pull_request_target: | |
types: [opened, synchronize, reopened, labeled] | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
issues: write | |
pull-requests: write | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Echo PR info | |
run: | | |
echo "PR title: ${{ github.event.pull_request.title }}" | |
echo "PR body: ${{ github.event.pull_request.body }}" | |
echo "PR head branch: ${{ github.event.pull_request.head.branch }}" | |
echo "PR base branch: ${{ github.event.pull_request.base.branch }}" |