Cannot move artifacts (Text Annotation, Group) with local space tool in a collaboration #2563
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: 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 | |
steps: | |
- name: Import Secrets | |
id: secrets | |
uses: hashicorp/[email protected] | |
with: | |
url: ${{ secrets.VAULT_ADDR }} | |
method: approle | |
roleId: ${{ secrets.VAULT_ROLE_ID }} | |
secretId: ${{ secrets.VAULT_SECRET_ID }} | |
exportEnv: false | |
secrets: | | |
secret/data/products/desktop-modeler/ci/ADD_TO_PROJECT_PAT ADD_TO_PROJECT_PAT; | |
- uses: actions/[email protected] | |
with: | |
project-url: ${{ secrets.CONNECTORS_PROJECT_URL }} | |
github-token: ${{ steps.secrets.outputs.ADD_TO_PROJECT_PAT }} | |
labeled: connectors |