Skip to content

Commit

Permalink
Gradle Check Optimization
Browse files Browse the repository at this point in the history
Signed-off-by: Prudhvi Godithi <[email protected]>
  • Loading branch information
prudhvigodithi committed May 20, 2024
1 parent a140735 commit 33e11bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sample-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
echo "pr_number=$(jq --raw-output .pull_request.number $GITHUB_EVENT_PATH)" >> $GITHUB_ENV
echo "pr_owner=$(jq --raw-output .pull_request.user.login $GITHUB_EVENT_PATH)" >> $GITHUB_ENV
echo "pr_or_commit_description=$(jq --ascii-output .pull_request.body $GITHUB_EVENT_PATH)" >> $GITHUB_ENV
echo 'post_merge_action=false' >> $GITHUB_ENV
echo "post_merge_action=false" >> $GITHUB_ENV
cat $GITHUB_ENV
- uses: actions/github-script@v7
if: github.event_name == 'push'
Expand Down Expand Up @@ -69,5 +69,5 @@ jobs:
echo "pr_owner=$(jq --raw-output '.commits[0].author.username' $GITHUB_EVENT_PATH)" >> $GITHUB_ENV
echo 'pr_number=${{ fromJson(steps.get_pr_data.outputs.result).number }}' >> $GITHUB_ENV
echo "pr_or_commit_description=$(jq --ascii-output .head_commit.message $GITHUB_EVENT_PATH)" >> $GITHUB_ENV
echo 'post_merge_action=true' >> $GITHUB_ENV
echo "post_merge_action=true" >> $GITHUB_ENV
cat $GITHUB_ENV

0 comments on commit 33e11bc

Please sign in to comment.