Add command for git reset current branch with respect to its remote v… #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: "Automatic PR creation" | |
on: | |
push: | |
branches: | |
- "master" | |
jobs: | |
raise-pr: | |
name: Raise PR to production | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/github-script@v4 | |
name: "Raise Pull Request" | |
with: | |
script: | | |
const script = require('./.github/workflows/pullRequestAction.cjs') | |
await script({github, context}) |