Skip to content

Commit

Permalink
Merge branch 'ci_development'
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbrant3 committed May 9, 2024
1 parent 70092be commit 840d266
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/submodule-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
name: LJSimpleRegisterLookup Submodule Update

#############################
# Start the job on all push #
#############################
on:
workflow_dispatch:
# push:
# # branches-ignore: [master, main]
# branches: [ci_development]
# pull_request:
# branches: [master, main]

###############
# Set the Job #
###############
jobs:
build:
name: Submodule update
runs-on: ubuntu-latest
env:
PARENT_REPOSITORY: 'labjack/ljsimpleregisterlookup'
CHECKOUT_BRANCH: 'main'
PR_AGAINST_BRANCH: 'main'
OWNER: 'labjack'

steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2

####################################
# Run the action against code base #
####################################
- name: run action
id: run_action
uses: releasehub-com/github-action-create-pr-parent-submodule@v1
with:
github_token: ${{ secrets.LJM_CONSTANTS_ACTIONS_TOKEN }}
parent_repository: ${{ env.PARENT_REPOSITORY }}
checkout_branch: ${{ env.CHECKOUT_BRANCH}}
pr_against_branch: ${{ env.PR_AGAINST_BRANCH }}
owner: ${{ env.OWNER }}

0 comments on commit 840d266

Please sign in to comment.