[Bot] sync to trezor-common repository #12
Workflow file for this run
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: "[Bot] sync to trezor-common repository" | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
sync-common: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_BOT_USERNAME: ${{ secrets.TREZOR_BOT_USERNAME }} | |
GITHUB_BOT_TOKEN: ${{ secrets.GH_BOT_TOKEN }} | |
GITHUB_BOT_EMAIL: ${{ secrets.TREZOR_BOT_EMAIL }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Copy git-filter and script to temporary directory | |
run: | | |
cp ./ci/common_sync/common_repo_sync.sh ${{runner.temp}}/common_repo_sync.sh | |
cp ./ci/common_sync/git-filter-repo ${{runner.temp}}/git-filter-repo | |
- name: Add git-filter-repo to PATH | |
run: | | |
echo "Adding git-filter-repo to PATH" | |
echo '${{runner.temp}}/git-filter-repo' >> $GITHUB_PATH | |
- name: Configure git user | |
run: | | |
git config --global user.name $GITHUB_BOT_USERNAME | |
git config --global user.email $GITHUB_BOT_EMAIL | |
- name: Testing some stuff | |
run: | | |
echo "Testing some stuff" | |
echo $PATH | |
git status | |
# - name: Sync trezor-common repository | |
# run: | | |
# echo "Synchronizing common with the trezor-common repository" | |
# ${{ runner.temp }}/common_repo_sync.sh |