docs: Remove device ownership docs (#704) #360
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update translations and Rust packaging related files in main | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- debian/control | |
concurrency: auto-update | |
permissions: | |
pull-requests: write | |
contents: write | |
# Jobs in this action must not run concurrently, as they modify the repository. | |
# When adding more jobs, make sure to use the "needs:" attribute to make sure they run sequentially. | |
jobs: | |
update-rust-packaging: | |
name: Update packaging related Rust files | |
runs-on: ubuntu-24.04 # ubuntu-latest-runner | |
steps: | |
- name: Install dependencies | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
run: | | |
sudo apt update | |
sudo apt install cargo dh-cargo git jq | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Vendor the dependencies | |
run: | | |
cargo vendor vendor_rust/ | |
- name: Update XS-Vendored-Sources-Rust | |
shell: bash | |
run: | | |
set -eu | |
export CARGO_VENDOR_DIR=vendor_rust/ | |
VENDORED_SOURCES=$(/usr/share/cargo/bin/dh-cargo-vendored-sources 2>&1 || true) | |
OUTPUT=$(echo "$VENDORED_SOURCES" | grep ^XS-Vendored-Sources-Rust: || true) | |
if [ -z "$OUTPUT" ]; then | |
echo "XS-Vendored-Sources-Rust is up to date. No change is needed."; | |
exit 0 | |
fi | |
sed -i "s/^XS-Vendored-Sources-Rust:.*/$OUTPUT/" debian/control | |
echo "modified=true" >> $GITHUB_ENV | |
- name: Create Pull Request | |
if: ${{ env.modified == 'true' }} | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
commit-message: Auto update packaging related Rust files | |
title: Auto update packaging related Rust files | |
labels: control, automated pr | |
branch: auto-update-rust-packaging | |
delete-branch: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push branch | |
if: ${{ env.modified == 'true' }} | |
run: | | |
git push origin auto-update-rust-packaging:main |