Skip to content

Commit ba5a295

Browse files
committed
Remove fork guards in Actions
1 parent 2060116 commit ba5a295

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.github/workflows/post-release-mergeback.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ on:
2121
jobs:
2222
merge-back:
2323
runs-on: ubuntu-latest
24-
if: github.repository == 'github/codeql-action'
2524
env:
2625
BASE_BRANCH: "${{ github.event.inputs.baseBranch || 'main' }}"
2726
HEAD_BRANCH: "${{ github.head_ref || github.ref }}"

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Update dependencies
99
timeout-minutes: 45
1010
runs-on: macos-latest
11-
if: contains(github.event.pull_request.labels.*.name, 'Update dependencies') && (github.event.pull_request.head.repo.full_name == 'github/codeql-action')
11+
if: contains(github.event.pull_request.labels.*.name, 'Update dependencies')
1212
steps:
1313
- name: Checkout repository
1414
uses: actions/checkout@v3

.github/workflows/update-release-branch.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
update:
1414
timeout-minutes: 45
1515
runs-on: ubuntu-latest
16-
if: github.repository == 'github/codeql-action'
1716
steps:
1817
- name: Dump environment
1918
run: env

0 commit comments

Comments
 (0)