Skip to content

Commit

Permalink
update shell manifest action to only update on pushes to dev or dev-2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
laestrada committed Aug 24, 2023
1 parent 0d3b39d commit bc18627
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/shell_var_manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name: Build Shell Variable Manifest
# This github action automatically runs src/utilities/generate_var_manifest.py
# and commits the resulting src/components/shell_variable_manifest.md to the repo
on:
pull_request:
push:
branches:
- "*"
- "dev"
- "dev-2.0"

jobs:
build:
Expand All @@ -15,8 +16,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}

# Set environment variables based on the last commit
- name: Set environment variable "commit-message"
Expand Down

0 comments on commit bc18627

Please sign in to comment.