mirror of https://github.com/status-im/consul.git
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
|
@ -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…
Reference in New Issue