Skip to content

Commit

Permalink
Fixed issue with not starting workflow on pull_request
Browse files Browse the repository at this point in the history
  • Loading branch information
smiasojed committed Oct 31, 2023
1 parent fd3e951 commit 2ccc38a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: continuous-integration

on:
pull_request:
types:
- opened
- reopened
- synchronize
paths-ignore:
- '**/*.md'
- '.gitlab-ci.yml'
Expand Down Expand Up @@ -51,8 +55,8 @@ jobs:
outputs:
IMAGE: ${{ steps.set_image.outputs.IMAGE }}
steps:
- id: set_image
run: echo "IMAGE=${{ env.IMAGE }}" >> $GITHUB_OUTPUT
- id: set_image
run: echo "IMAGE=${{ env.IMAGE }}" >> $GITHUB_OUTPUT

spellcheck:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -589,3 +593,4 @@ jobs:
# of this flag.
scripts/for_all_contracts_exec.sh --path integration-tests -- cargo doc --manifest-path {} \
--document-private-items --verbose --no-deps

0 comments on commit 2ccc38a

Please sign in to comment.