From 19f2fde239fc23cc72bd1f9c9854b797cf7efab6 Mon Sep 17 00:00:00 2001 From: Joe Harvey <51208233+jdharvey-ibm@users.noreply.github.com> Date: Thu, 5 Oct 2023 10:23:42 -0400 Subject: [PATCH] Delete .github/workflows/platform-content-sync.yml (#3764) --- .github/workflows/platform-content-sync.yml | 29 --------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/platform-content-sync.yml diff --git a/.github/workflows/platform-content-sync.yml b/.github/workflows/platform-content-sync.yml deleted file mode 100644 index efce1cdb40d..00000000000 --- a/.github/workflows/platform-content-sync.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Sync content with platform - -on: - push: - branches: - - 'main' - paths: - - '**.mdx' - -jobs: - create_issue: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - repository: carbon-design-system/carbon-platform - ref: main - - name: Generate token - uses: tibdex/github-app-token@v1 - id: generate_token - with: - app_id: ${{ secrets.APP_ID }} - private_key: ${{ secrets.APP_PRIVATE_KEY }} - - name: Create issue on platform repo - run: | - gh issue create --title "[Content sync]: carbon-website" --label "role: dev 🤖" --label "service: web-app 🌎" --body 'A pull request on carbon-website was just merged. It contains .mdx content changes that may need to be synced to platform: - - ${{ github.event.compare }}' - env: - GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}