Skip to content

Commit

Permalink
Fix typo in validate-deployment workflow (issue #7) (#30)
Browse files Browse the repository at this point in the history
* Fix typo when setting env var

* Remove testing trigger
  • Loading branch information
TylerHendrickson authored Dec 6, 2023
1 parent fcbd159 commit 2e4eaba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Continuous Integration

on:
pull_request_target: {}
pull_request: {} # TESTING ONLY!!!

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Count commits in candidate ref that are not in protected ref
id: all-cherries
run: |
$CHERRY_FILE=$(mktemp -t cherries.XXXXX)
CHERRY_FILE=$(mktemp -t cherries.XXXXX)
git cherry -v "$PROTECTED_REF" "$DEPLOYMENT_REF" > $CHERRY_FILE
echo "count=$(cat $CHERRY_FILE | wc -l)" >> $GITHUB_OUTPUT
echo "file=$CHERRY_FILE" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 2e4eaba

Please sign in to comment.