As a Korifi API user I want to be able to create docker packages with private docker images so that I am enabled to run workloads backed up by docker images #63
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: Adds all new issues to the Icebox column in our backlog project | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
add-to-backlog: | |
if: "!contains(github.event.issue.labels.*.name, 'epic')" | |
name: Add issue to backlog | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/add-to-project@v0.5.0 | |
with: | |
project-url: https://github.com/orgs/cloudfoundry/projects/35 | |
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} | |
add-to-roadmap: | |
if: contains(github.event.issue.labels.*.name, 'epic') | |
name: Add epic to roadmap | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/add-to-project@v0.5.0 | |
with: | |
project-url: https://github.com/orgs/cloudfoundry/projects/29 | |
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} |