Skip to content

Commit

Permalink
Merge pull request #544 from wri/fix_feature_delete1
Browse files Browse the repository at this point in the history
Fix so github destroy action runs again (isn't skipped)
  • Loading branch information
dmannarino authored Jun 12, 2024
2 parents e094fef + 6234c8d commit c266066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/terraform_destroy_on_delete.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [delete]

jobs:
build:
if: contains(github.event.ref_type, 'branch') && (! github.event.ref == 'master') && (! github.event.ref == 'develop')
if: github.event.ref_type == 'branch' && (github.event.ref != 'refs/heads/master') && (github.event.ref != 'refs/heads/develop')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand Down

0 comments on commit c266066

Please sign in to comment.