From 8e07307f04aaaf01cda1f6ff68b2b615da929206 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Fri, 3 Jan 2020 10:05:05 +0900 Subject: [PATCH] Remove multi workflow --- .../workflows/create-pull-request-multi.yml | 45 ------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/create-pull-request-multi.yml diff --git a/.github/workflows/create-pull-request-multi.yml b/.github/workflows/create-pull-request-multi.yml deleted file mode 100644 index 89b2120..0000000 --- a/.github/workflows/create-pull-request-multi.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Create Pull Request All Platforms -on: - repository_dispatch: - types: [create-pull-request-multi] -jobs: - createPullRequest: - name: CPR on ${{ matrix.platform }} - strategy: - matrix: - platform: [ubuntu-latest, macos-latest, windows-latest] - runs-on: ${{ matrix.platform }} - steps: - - uses: actions/checkout@v2 - - name: Create report file - if: matrix.platform == 'ubuntu-latest' || matrix.platform == 'macos-latest' - run: date +%s > report.txt - - name: Create report file (windows) - if: matrix.platform == 'windows-latest' - run: echo %DATE% %TIME% > report.txt - - name: Create Pull Request - id: cpr - uses: ./ - with: - token: ${{ secrets.GITHUB_TOKEN }} - commit-message: Add report file - committer: Peter Evans - title: '[Example] Add report file' - body: | - New report - - Contains *today's* date - - Auto-generated by [create-pull-request][1] - - [1]: https://github.com/peter-evans/create-pull-request - labels: report, automated pr - assignees: peter-evans - reviewers: peter-evans - milestone: 1 - project: Example Project - project-column: To do - branch: example-patches - branch-suffix: random - - name: Check outputs - run: | - echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}" - echo "Pull Request Number - ${{ steps.cpr.outputs.pr_number }}"