mirror of
https://github.com/status-im/consul.git
synced 2025-01-23 12:11:05 +00:00
JIRA pr check: Filter out OSS/ENT merges (#16593)
* jira pr check filter out dependabot and oss/ent merges
This commit is contained in:
parent
fa93a0d4f7
commit
40312ac072
6
.github/workflows/jira-pr.yaml
vendored
6
.github/workflows/jira-pr.yaml
vendored
@ -41,6 +41,12 @@ jobs:
|
||||
if [[ -n ${ROLE} ]]; then
|
||||
echo "Actor ${{ github.actor }} is a ${TEAM} team member"
|
||||
echo "MESSAGE=true" >> $GITHUB_OUTPUT
|
||||
elif [[ "${{ contains(github.actor, 'hc-github-team-consul-core') }}" == "true" ]]; then
|
||||
echo "Actor ${{ github.actor }} is a ${TEAM} team member"
|
||||
echo "MESSAGE=true" >> $GITHUB_OUTPUT
|
||||
elif [[ "${{ contains(github.actor, 'dependabot') }}" == "true" ]]; then
|
||||
echo "Actor ${{ github.actor }} is a ${TEAM} team member"
|
||||
echo "MESSAGE=true" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "Actor ${{ github.actor }} is NOT a ${TEAM} team member"
|
||||
echo "MESSAGE=false" >> $GITHUB_OUTPUT
|
||||
|
Loading…
x
Reference in New Issue
Block a user