Add event - Global Day of Coderetreat 2024 @DevDay Pune India #176
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: Schedule Automerge Run | |
on: | |
pull_request_target: | |
types: [opened] | |
workflow_dispatch: | |
inputs: | |
pull_request: | |
description: "The Pull Request to check" | |
required: true | |
type: string | |
jobs: | |
automerge_schedule_run_on_pull_request: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- run: env | |
- run: echo $EVENT | |
env: | |
EVENT: ${{ toJSON(github.event) }} | |
- name: Wait for Netlify test completion | |
run: sleep 10m | |
- uses: actions/checkout@v4 | |
- name: Auto-merge new events with known submitters | |
uses: ./.github/actions/automerger | |
continue-on-error: true | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: NoOp so the run is green | |
run: echo Noop |