feat(scaffolder-relation)!: migrate to new backend and remove deprecations #6722
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: PR | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- closed | |
issue_comment: | |
types: | |
- created | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
# Avoid running on issue comments | |
if: github.repository == 'backstage/community-plugins' && ( github.event.pull_request || github.event.issue.pull_request ) | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: PR sync | |
uses: backstage/actions/pr-sync@v0.6.10 | |
with: | |
github-token: ${{ secrets.GH_SERVICE_ACCOUNT_TOKEN }} | |
app-id: ${{ secrets.BACKSTAGE_GOALIE_APPLICATION_ID }} | |
private-key: ${{ secrets.BACKSTAGE_GOALIE_PRIVATE_KEY }} | |
installation-id: ${{ secrets.BACKSTAGE_GOALIE_INSTALLATION_ID }} | |
project-id: PVT_kwDOBFKqdc4AmjVD | |
auto-assign: false |