förenklad PR commit #16
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 | |
on: | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
create_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
repository: tobbe-joh/noq_app_fork | |
ref: main | |
- name: Create Pull Request | |
uses: ./ # Se till att detta refererar till din custom action | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
parent_repository: tobbe-joh/noq_app_fork | |
branch: main | |
title: 'Update from FRONTEND submodule' | |
body: 'This PR is to notify that the submodule has been updated.' |