-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from zapatacomputing/hotfix/ZQS-512/alexjuda/w…
…orkflow-stubs ZQS-512 add release workflow stubs
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# This workflow is meant to be triggered by push to master when running the release | ||
# process. | ||
# | ||
# Don't extend this workflow. If any more steps are needed please extend the | ||
# "publish-release" action in "z-quantum-actions". This allows reusing it between repos. | ||
name: publish-release | ||
|
||
# on: | ||
# push: | ||
# branches: | ||
# - master | ||
|
||
# jobs: | ||
# run-action: | ||
# runs-on: ubuntu-latest | ||
|
||
# steps: | ||
# # Needed to get access to publish-release action definition | ||
# - name: Check out the released repo | ||
# uses: actions/checkout@v2 | ||
# with: | ||
# # Fetch whole repo to get access to tags. We need tags to read current package | ||
# # version. | ||
# fetch-depth: 0 | ||
|
||
# - name: Run publish release action | ||
# uses: ./vendor/z-quantum-actions/publish-release | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# This workflow is meant to be triggered by an Operator with via cURL. | ||
# | ||
# Don't extend this workflow. If any more steps are needed please extract the steps as a | ||
# composite action instead. This allows reusing it between repos. | ||
name: submit-dev-master-pr | ||
|
||
# on: | ||
# workflow_dispatch: | ||
|
||
# jobs: | ||
# submit-pr: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Submit dev -> master PR | ||
# uses: actions/github-script@v4 | ||
# with: | ||
# script: | | ||
# github.pulls.create({ | ||
# ...context.repo, | ||
# title: "Merge dev to master", | ||
# head: "dev", | ||
# base: "master", | ||
# }) | ||
|