Skip to content

As a Korifi user I want to be able to specify binding parameters in the manifest of the app that I push to Korifi #210

As a Korifi user I want to be able to specify binding parameters in the manifest of the app that I push to Korifi

As a Korifi user I want to be able to specify binding parameters in the manifest of the app that I push to Korifi #210

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/[email protected]
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/[email protected]
with:
project-url: https://github.com/orgs/cloudfoundry/projects/29
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}