diff --git a/.github/workflows/create-pull-request-multi.yml b/.github/workflows/create-pull-request-multi.yml index c575863..89b2120 100644 --- a/.github/workflows/create-pull-request-multi.yml +++ b/.github/workflows/create-pull-request-multi.yml @@ -4,13 +4,13 @@ on: types: [create-pull-request-multi] jobs: createPullRequest: - name: Testing on ${{ matrix.platform }} + name: CPR on ${{ matrix.platform }} strategy: matrix: platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Create report file if: matrix.platform == 'ubuntu-latest' || matrix.platform == 'macos-latest' run: date +%s > report.txt @@ -23,8 +23,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: Add report file - author-email: peter-evans@users.noreply.github.com - author-name: Peter Evans + committer: Peter Evans title: '[Example] Add report file' body: | New report diff --git a/.github/workflows/create-pull-request.yml b/.github/workflows/create-pull-request.yml index 42f2d1f..677f1be 100644 --- a/.github/workflows/create-pull-request.yml +++ b/.github/workflows/create-pull-request.yml @@ -6,7 +6,7 @@ jobs: createPullRequest: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Create report file run: date +%s > report.txt - name: Create Pull Request @@ -15,8 +15,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: Add report file - author-email: peter-evans@users.noreply.github.com - author-name: Peter Evans + committer: Peter Evans title: '[Example] Add report file' body: | New report @@ -31,7 +30,6 @@ jobs: project: Example Project project-column: To do branch: example-patches - branch-suffix: short-commit-hash - name: Check outputs run: | echo "Pull Request Number - ${{ env.PULL_REQUEST_NUMBER }}"