Skip to content

Commit

Permalink
Merge pull request #40 from bcgov/feat/37-update-fwx-pipe
Browse files Browse the repository at this point in the history
fix: syntax error on build actions
  • Loading branch information
franTarkenton committed Oct 11, 2023
2 parents 39dfef5 + e7ce0a2 commit 2378f83
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 26 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/pr-close.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
name: Pull Request Closed

# disable this action as going to run stuff as gha
# on:
# pull_request:
# types:
# - closed
# workflow_dispatch:
on:
pull_request:
branches: ['branch_that_doesnt_exist']
types:
- closed
workflow_dispatch:

jobs:
# cleanup should run even if the pr is not merged.
Expand Down
42 changes: 21 additions & 21 deletions .github/workflows/pr-open-r.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,27 @@ on:


# disable the build as its not required anymore... Jobs are going to run as
# gha.
# pull_request:
# # debug: remove the dev,putting build action on non existent branches for debug
# branches: ['main']
# types: ['opened', 'reopened', 'edited', 'synchronize']
# paths-ignore:
# - .vscode/**
# - .flake8
# - .lintr
# - .RData
# - .Rhistory
# - .Rprofile
# - .gitignore
# - LICENSE
# - readme.md
# - code_of_conduct.md
# - .flake8
# - COMPLIANCE.yaml
# - docs/**
# - renv.lock
# workflow_dispatch:
# gha. Disabling by setting to run on a non existent branch
pull_request:
# debug: remove the dev,putting build action on non existent branches for debug
branches: ['branch_that_doesnt_exist']
types: ['opened', 'reopened', 'edited', 'synchronize']
paths-ignore:
- .vscode/**
- .flake8
- .lintr
- .RData
- .Rhistory
- .Rprofile
- .gitignore
- LICENSE
- readme.md
- code_of_conduct.md
- .flake8
- COMPLIANCE.yaml
- docs/**
- renv.lock
workflow_dispatch:

jobs:
# calculate the image tag / used to tag image and then for the
Expand Down

0 comments on commit 2378f83

Please sign in to comment.