-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
🚨 Issue: Ensure GitHub Action Runs on push to Pull Request Branches
Description:
Currently, wedon't have any Github Actions triggered when new commits are pushed to an existing pull request. Let's update the workflow triggers to ensure that the CI runs on every push to branches associated with open PRs.
Acceptance Criteria:
- The GitHub Action is triggered when new commits are pushed to a branch with an open pull request.
- The workflow file includes
on: [push, pull_request]or equivalent configuration.
Suggested Fix:
Update the workflow .yml file to include the following trigger block:
on:
push:
branches:
- '**' # or specific branches like 'main', 'develop', etc.
pull_request:
branches:
- '**'Metadata
Metadata
Assignees
Labels
No labels