Skip to content

Commit

Permalink
Merge branch 'main' into Shegox-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Shegox authored Dec 12, 2024
2 parents 03eee68 + 6674bbe commit ed7e7cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
approved-build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
environment: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.author_association == 'OWNER' && "no-approval" || "approval" }}
environment: ${{ github.event_name == 'pull_request_target' && contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.pull_request.author_association) && 'no-approval' || 'approval' }}

# Steps represent a sequence of tasks that will be executed as part of the job
steps:

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!
run: echo ${{ github.event.pull_request.author_association }}

# Runs a set of commands using the runners shell
- name: Run a multi-line script
Expand Down

0 comments on commit ed7e7cd

Please sign in to comment.