Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
kernelsam committed Jan 23, 2024
1 parent a0b0d39 commit a74d675
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/add-to-project-factory-dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: echo "$GITHUB_CONTEXT"

add-pr-to-project:
if: ${{ github.actor == 'dependabot[bot]' && ( contains(fromJSON('["opened", "reopened", synchronize"]'), github.event.action) ) }}
if: ${{ github.actor == 'dependabot[bot]' && ( github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize') }}
secrets:
SENZING_GITHUB_PROJECT_RW_TOKEN: ${{ secrets.SENZING_GITHUB_PROJECT_RW_TOKEN }}
uses: senzing-factory/build-resources/.github/workflows/add-to-project.yaml@main
Expand All @@ -25,7 +25,7 @@ jobs:
project-number: ${{ vars.SENZING_PROJECT_FACTORY_VALUE }}

move-pr-to-project-column:
if: ${{ github.actor == 'dependabot[bot]' && ( contains(fromJSON('["opened", "reopened", synchronize"]'), github.event.action) ) }}
if: ${{ github.actor == 'dependabot[bot]' && contains(fromJSON('["opened", "reopened", synchronize"]'), github.event.action ) }}
secrets:
SENZING_GITHUB_PROJECT_RW_TOKEN: ${{ secrets.SENZING_GITHUB_PROJECT_RW_TOKEN }}
uses: senzing-factory/build-resources/.github/workflows/move-pr-to-project-column.yaml@main
Expand Down

0 comments on commit a74d675

Please sign in to comment.