diff --git a/.github/files-sync-config.yml b/.github/files-sync-config.yml index 20e2b97..6ae3191 100644 --- a/.github/files-sync-config.yml +++ b/.github/files-sync-config.yml @@ -13,25 +13,11 @@ settings: --- - ### All PR Titles - - <%_ for (const title of pull_request_titles) { -%> - - <%- title %> + ### Related Pull Requests + <%_ for (const prTitle of pull_request_titles) { -%> + - <%- prTitle %> <%_ } -%> - --- - - ### Changed Files - - <%_ for (const file of changes) { -%> - <% if (file.deleted) { -%> - - :x: **Deleted**: \`<%- file.to %>\`<% if (file.pull_request_title) { %> (from PR: [#<%- file.pull_request_number %>] <%- file.pull_request_title %>)<% } %> - <% } else if (file.from === file.to) { -%> - - :file_folder: \`<%- file.to %>\`<% if (file.pull_request_title) { %> (from PR: [#<%- file.pull_request_number %>] <%- file.pull_request_title %>)<% } %> - <% } else { -%> - - :arrow_right: \`<%- file.from %>\` → \`<%- file.to %>\`<% if (file.pull_request_title) { %> (from PR: [#<%- file.pull_request_number %>] <%- file.pull_request_title %>)<% } %> - <% } -%> - <%_ } -%> patterns: - files: - from: . diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index e0b4832..7c1748f 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: michaelshih-circle/files-sync-action@v1.1.7 + - uses: michaelshih-circle/files-sync-action@v1.1.9 with: github_token: ${{ secrets.SECRET_TOKEN }}