🚨 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:
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:
- '**'
🚨 Issue: Ensure GitHub Action Runs on
pushto Pull Request BranchesDescription:
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:
on: [push, pull_request]or equivalent configuration.Suggested Fix:
Update the workflow
.ymlfile to include the following trigger block: