Skip to content

Commit

Permalink
👷 Github merge event
Browse files Browse the repository at this point in the history
  • Loading branch information
heliannuuthus committed Mar 11, 2024
1 parent 9c1cada commit f596086
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ on:
- master

jobs:
print:
name: Input check
runs-on: ubuntu-latest
steps:
- name: Checking your input
run: |
echo "github.event.pull_request.merged : $MERGED_RAW"
echo "github.event.pull_request.merged == 'true' : $MERGED_TRUE_STR"
echo "github.event.pull_request.merged == true : $MERGED_TRUE_BOOL"
env:
MERGED_RAW: ${{ github.event.pull_request.merged }}
MERGED_TRUE_STR: ${{ github.event.pull_request.merged == 'true' }}
MERGED_TRUE_BOOL: ${{ github.event.pull_request.merged == true }}

lint:
if: github.event.pull_request.merged != true
uses: heliannuuthus/integration-deploy/.github/workflows/call-gradle-lint.yml@master
Expand Down

0 comments on commit f596086

Please sign in to comment.