Skip to content

Commit

Permalink
Test workflow changes: on from pull_request_target to pull_request
Browse files Browse the repository at this point in the history
Signed-off-by: Theodor Mihalache <tmihalac@redhat.com>
  • Loading branch information
tmihalac committed Sep 20, 2024
1 parent 68391a3 commit 3c35fc4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/java_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Print target repository
- run: echo ${{ github.event.pull_request.base.repo.full_name }}
- run: echo "${{ github.event.pull_request.base.repo.full_name }}"
- name: Print target branch
- run: echo ${{ github.event.pull_request.base.ref }}
- run: echo "${{ github.event.pull_request.base.ref }}"
- uses: actions/checkout@v4
with:
repository: ${{ github.event.repository.full_name }} # Uses the full repository name
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Print target repository
- run: echo ${{ github.event.pull_request.base.repo.full_name }}
- run: echo "${{ github.event.pull_request.base.repo.full_name }}"
- name: Print target branch
- run: echo ${{ github.event.pull_request.base.ref }}
- run: echo "${{ github.event.pull_request.base.ref }}"
- uses: amannn/action-semantic-pull-request@v4
with:
# Must use uppercase
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
--health-retries 5
steps:
- name: Print target repository
- run: echo ${{ github.event.pull_request.base.repo.full_name }}
- run: echo "${{ github.event.pull_request.base.repo.full_name }}"
- name: Print target branch
- run: echo ${{ github.event.pull_request.base.ref }}
- run: echo "${{ github.event.pull_request.base.ref }}"
- uses: actions/checkout@v4
with:
repository: ${{ github.event.repository.full_name }} # Uses the full repository name
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr_local_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
PYTHON: ${{ matrix.python-version }}
steps:
- name: Print target repository
- run: echo ${{ github.event.pull_request.base.repo.full_name }}
- run: echo "${{ github.event.pull_request.base.repo.full_name }}"
- name: Print target branch
- run: echo ${{ github.event.pull_request.base.ref }}
- run: echo "${{ github.event.pull_request.base.ref }}"
- uses: actions/checkout@v4
with:
repository: ${{ github.event.repository.full_name }} # Uses the full repository name
Expand Down

0 comments on commit 3c35fc4

Please sign in to comment.