Update py3_meson => 1.9.1 — py3_meson → 1.9.1 (#12896)

* Update py3_meson => 1.9.1

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Adjust merge and changed file usage in workflows.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
This commit is contained in:
chromebrew-actions[bot]
2025-09-23 14:09:32 -05:00
committed by GitHub
parent d38a2bcea4
commit cdb0a06488
9 changed files with 61 additions and 56 deletions

View File

@@ -70,13 +70,10 @@ jobs:
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git pull --rebase origin master
git push -f
- name: Push rebase changes
uses: ad-m/github-push-action@master
with:
branch: ${{ inputs.branch || github.ref_name }}
force: true
# git pull --rebase origin master
git pull
git rebase -X master ${{ inputs.branch || github.ref_name }}
git push --force-with-lease
- name: Set Timestamp
id: set-timestamp
run: |
@@ -85,12 +82,13 @@ jobs:
echo "TIMESTAMP=${TIMESTAMP}" >> "$GITHUB_OUTPUT"
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
base_sha: master
files_yaml: |
packages:
- packages/*.rb
since_last_remote_commit: true
- name: Export variables to github context
id: changed-packages
run: |

View File

@@ -71,22 +71,20 @@ jobs:
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git pull --rebase origin master
git push -f
- name: Push rebase changes
if: ${{ ( inputs.rebase ) }}
uses: ad-m/github-push-action@master
with:
branch: ${{ inputs.branch || github.ref_name }}
force: true
# git pull --rebase origin master
# git push -f
git pull
git rebase -X master ${{ inputs.branch || github.ref_name }}
git push --force-with-lease
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
base_sha: master
files_yaml: |
packages:
- packages/*.rb
since_last_remote_commit: true
- name: Export variables to github context
id: changed-packages
run: |
@@ -343,7 +341,10 @@ jobs:
git checkout "${{ inputs.branch || github.ref_name }}"
if [[ ${REBASE} == 'true' ]]; then
git reset --hard "origin/${{ inputs.branch || github.ref_name }}"
git pull --rebase origin master && git push -f
git pull
git rebase -X master ${{ inputs.branch || github.ref_name }}
git push --force-with-lease
# git pull --rebase origin master && git push -f
fi
git log --oneline -10
git checkout master && git pull
@@ -351,7 +352,7 @@ jobs:
git checkout "${{ inputs.branch || github.ref_name }}"
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
base_sha: master
files_yaml: |
@@ -366,6 +367,7 @@ jobs:
- '!manifest/**'
- '!packages/*.rb'
- '!.github/**'
since_last_remote_commit: true
- name: Get GH Token
id: get_workflow_token
uses: peter-murray/workflow-application-token-action@v4

View File

@@ -44,7 +44,9 @@ jobs:
git reset --hard "origin/${{ github.ref_name }}"
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
since_last_remote_commit: true
- name: Get extensions of changed files
id: changed-file-extensions
run: |

View File

@@ -75,12 +75,13 @@ jobs:
echo "TIMESTAMP=${TIMESTAMP}" >> "$GITHUB_OUTPUT"
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
base_sha: master
files_yaml: |
packages:
- packages/*.rb
since_last_remote_commit: true
- name: Export variables to github context
id: changed-packages
run: |
@@ -343,7 +344,7 @@ jobs:
git checkout "${{ inputs.branch || github.ref_name }}"
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
base_sha: master
files_yaml: |
@@ -358,6 +359,7 @@ jobs:
- '!manifest/**'
- '!packages/*.rb'
- '!.github/**'
since_last_remote_commit: true
- name: Get GH Token
id: get_workflow_token
uses: peter-murray/workflow-application-token-action@v4

View File

@@ -66,7 +66,7 @@ jobs:
run: echo "$MATRIX_CONTEXT"
- name: Get non-pkg changed files
id: non-pkg-changed-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
files_ignore: |
.github/**
@@ -76,9 +76,10 @@ jobs:
tools/repology.json
- name: Get all changed package files
id: changed-ruby-files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
files: packages/*.rb
since_last_remote_commit: true
- name: Export variables to github context
run: |
# Convert "packages/foo.rb packages/bar.rb" (from steps.changed-ruby-files.outputs.all_changed_files) into "foo bar"