Skip to content

Commit

Permalink
Merge branch '2.18'
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 7, 2024
2 parents f8653cc + 3e754a4 commit e5d8fad
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -77,3 +77,25 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./target/site/jacoco/jacoco.xml
flags: unittests

trigger-dep-build:
name: Trigger downstream builds
needs: [build]
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
repo: [ 'FasterXML/jackson-databind' ]

steps:
- name: Repository dispatch
uses: peter-evans/repository-dispatch@v3
with:
# Does regular token work within same org?
token: ${{ secrets.REPO_DISPATCH }}
repository: ${{ matrix.repo }}
event-type: jackson-core-pushed
# Could push information on what was built but not yet
client-payload: '{"version": "N/A" }'

0 comments on commit e5d8fad

Please sign in to comment.