change folder position #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: FRONTEND Update Main | |
############################# | |
# Start the job on all push # | |
############################# | |
on: | |
push: | |
branches: | |
- main | |
- master | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
build: | |
name: FRONTEND Submodule update | |
runs-on: ubuntu-latest | |
env: | |
PARENT_REPOSITORY: "tobbe-joh/noq_app_fork" | |
CHECKOUT_BRANCH: "main" | |
PR_AGAINST_BRANCH: "main" | |
OWNER: "tobbe-joh" | |
steps: | |
########################## | |
# Checkout the code base # | |
########################## | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
#################################### | |
# Run the action against code base # | |
#################################### | |
- name: run action | |
id: run_action | |
uses: ./.github/actions/custom-submodule-update/action.yml | |
with: | |
github_token: ${{ secrets.RELEASE_HUB_SECRET }} | |
parent_repository: ${{ env.PARENT_REPOSITORY }} | |
checkout_branch: ${{ env.CHECKOUT_BRANCH}} | |
pr_against_branch: ${{ env.PR_AGAINST_BRANCH }} | |
owner: ${{ env.OWNER }} |