Skip to content

Commit

Permalink
Merge pull request #57 from zapatacomputing/hotfix/ZQS-512/alexjuda/w…
Browse files Browse the repository at this point in the history
…orkflow-stubs

ZQS-512 add release workflow stubs
  • Loading branch information
alexjuda authored Jul 28, 2021
2 parents 0a60489 + e99d52d commit e5858ba
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/publish-release.yml
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

24 changes: 24 additions & 0 deletions .github/workflows/submit-dev-master-pr.yml
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",
# })

0 comments on commit e5858ba

Please sign in to comment.