feat(form events): Create unified observable and signal data accessors for form events #240
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Merge All Contributors PR | |
on: | |
pull_request: | |
types: | |
- 'closed' | |
jobs: | |
if_merged: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
const script = require('./.github/scripts/merge-all-contributors.js') | |
await script({ github, context }); |