Skip to content

Commit 43f4bf9

Browse files
committed
ci: remove branch check for ready workflows
The commit-check and component-owners workflows are currently ready to run on all branches. Remove the restraints for these two workflows. Other workflows will need to be adjusted before they can be released. Signed-off-by: Randolph Sapp <rs@ti.com>
1 parent 9725d8f commit 43f4bf9

2 files changed

Lines changed: 6 additions & 10 deletions

File tree

.github/workflows/commit-check.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
name: Commit Check
3-
on: # yamllint disable-line rule:truthy
4-
pull_request:
5-
branches: ['master']
3+
on: [pull_request] # yamllint disable-line rule:truthy
64

75
concurrency:
86
group: ${{ github.workflow }}-${{ github.event.number }}

.github/workflows/component-owners.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
22
name: "component-owners"
33

4-
on: # yamllint disable-line rule:truthy
5-
# It's insecure to use pull_request_target if you intend to check out code
6-
# from that PR. This just reads the config file in the pull request base, and
7-
# is not an issue currently. We will need to use this to comment on PRs coming
8-
# from forked repositories.
9-
pull_request_target:
10-
branches: [master]
4+
# It's insecure to use pull_request_target if you intend to check out code
5+
# from that PR. This just reads the config file in the pull request base, and
6+
# is not an issue currently. We will need to use this to comment on PRs coming
7+
# from forked repositories.
8+
on: [pull_request_target] # yamllint disable-line rule:truthy
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.event.number }}

0 commit comments

Comments
 (0)