DMN rules can not be reordered #8572
This file contains hidden or 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: ADD_TO_PROJECT | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| - transferred | |
| - labeled | |
| pull_request: | |
| types: | |
| - opened | |
| - labeled | |
| jobs: | |
| exec: | |
| name: Add issue to project | |
| if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write # Vault OIDC/JWT auth | |
| steps: | |
| - name: Import Secrets | |
| id: secrets | |
| uses: hashicorp/vault-action@v4.0.0 | |
| with: | |
| url: ${{ secrets.VAULT_ADDR }} | |
| method: jwt | |
| role: ${{ secrets.VAULT_JWT_ROLE }} | |
| path: ${{ secrets.VAULT_JWT_PATH }} | |
| jwtGithubAudience: ${{ secrets.VAULT_JWT_AUDIENCE }} | |
| exportEnv: false | |
| secrets: | | |
| secret/data/products/desktop-modeler/ci/ADD_TO_PROJECT_PAT ADD_TO_PROJECT_PAT; | |
| - uses: actions/add-to-project@v2.0.0 | |
| with: | |
| project-url: ${{ secrets.CONNECTORS_PROJECT_URL }} | |
| github-token: ${{ steps.secrets.outputs.ADD_TO_PROJECT_PAT }} | |
| labeled: connectors |