From 925a0402652db58fdf4c2ae3de3b86aa46c80b41 Mon Sep 17 00:00:00 2001 From: Marco Pernpruner Date: Thu, 26 Sep 2024 11:10:56 +0200 Subject: [PATCH 1/2] Test workaround to fix actions issues --- .github/workflows/update-destinations-cs.yml | 17 +++++++++++++++++ .github/workflows/update-members-cs.yml | 17 +++++++++++++++++ .github/workflows/update-people-cs.yml | 17 +++++++++++++++++ .github/workflows/update-people-pictures-cs.yml | 17 +++++++++++++++++ .github/workflows/update-publications-cs.yml | 17 +++++++++++++++++ .github/workflows/update-theses-cs.yml | 17 +++++++++++++++++ 6 files changed, 102 insertions(+) diff --git a/.github/workflows/update-destinations-cs.yml b/.github/workflows/update-destinations-cs.yml index bc85e59c..624bdb6c 100644 --- a/.github/workflows/update-destinations-cs.yml +++ b/.github/workflows/update-destinations-cs.yml @@ -24,4 +24,21 @@ jobs: user_name: 'csfbk' user_email: 'cs@fbk.eu' + - name: Re-checkout on failure + if: ${{ failure() }} + uses: actions/checkout@v2 + + - name: Re-push on failure + if: ${{ failure() }} + uses: dmnemec/copy_file_to_another_repo_action@main + env: + API_TOKEN_GITHUB: ${{ secrets.CS_SYNC_TOKEN }} + with: + source_file: '_data/destinations.yml' + destination_repo: 'csfbk/csfbk.github.io' + destination_folder: '_data/destinations' + rename: 'destinations_st.yml' + user_name: 'csfbk' + user_email: 'cs@fbk.eu' + - run: echo "Operation completed." diff --git a/.github/workflows/update-members-cs.yml b/.github/workflows/update-members-cs.yml index b59c9123..8ebca065 100644 --- a/.github/workflows/update-members-cs.yml +++ b/.github/workflows/update-members-cs.yml @@ -24,4 +24,21 @@ jobs: user_name: 'csfbk' user_email: 'cs@fbk.eu' + - name: Re-checkout on failure + if: ${{ failure() }} + uses: actions/checkout@v2 + + - name: Re-push on failure + if: ${{ failure() }} + uses: dmnemec/copy_file_to_another_repo_action@main + env: + API_TOKEN_GITHUB: ${{ secrets.CS_SYNC_TOKEN }} + with: + source_file: '_data/members.yml' + destination_repo: 'csfbk/csfbk.github.io' + destination_folder: '_data/members' + rename: 'members_st.yml' + user_name: 'csfbk' + user_email: 'cs@fbk.eu' + - run: echo "Operation completed." diff --git a/.github/workflows/update-people-cs.yml b/.github/workflows/update-people-cs.yml index c34da8e4..5a97f4f6 100644 --- a/.github/workflows/update-people-cs.yml +++ b/.github/workflows/update-people-cs.yml @@ -24,4 +24,21 @@ jobs: user_name: 'csfbk' user_email: 'cs@fbk.eu' + - name: Re-checkout on failure + if: ${{ failure() }} + uses: actions/checkout@v2 + + - name: Re-push on failure + if: ${{ failure() }} + uses: dmnemec/copy_file_to_another_repo_action@main + env: + API_TOKEN_GITHUB: ${{ secrets.CS_SYNC_TOKEN }} + with: + source_file: '_data/people.yml' + destination_repo: 'csfbk/csfbk.github.io' + destination_folder: '_data/people' + rename: '1_people_st.yml' + user_name: 'csfbk' + user_email: 'cs@fbk.eu' + - run: echo "Operation completed." diff --git a/.github/workflows/update-people-pictures-cs.yml b/.github/workflows/update-people-pictures-cs.yml index c292d226..7fece914 100644 --- a/.github/workflows/update-people-pictures-cs.yml +++ b/.github/workflows/update-people-pictures-cs.yml @@ -24,4 +24,21 @@ jobs: user_email: 'cs@fbk.eu' use_rsync: true + - name: Re-checkout on failure + if: ${{ failure() }} + uses: actions/checkout@v2 + + - name: Re-push on failure + if: ${{ failure() }} + uses: dmnemec/copy_file_to_another_repo_action@main + env: + API_TOKEN_GITHUB: ${{ secrets.CS_SYNC_TOKEN }} + with: + source_file: 'assets/areas/people/' + destination_repo: 'csfbk/csfbk.github.io' + destination_folder: 'assets/areas/people/st' + user_name: 'csfbk' + user_email: 'cs@fbk.eu' + use_rsync: true + - run: echo "Operation completed." diff --git a/.github/workflows/update-publications-cs.yml b/.github/workflows/update-publications-cs.yml index e12ea88f..761c092f 100644 --- a/.github/workflows/update-publications-cs.yml +++ b/.github/workflows/update-publications-cs.yml @@ -24,4 +24,21 @@ jobs: user_name: 'csfbk' user_email: 'cs@fbk.eu' + - name: Re-checkout on failure + if: ${{ failure() }} + uses: actions/checkout@v2 + + - name: Re-push on failure + if: ${{ failure() }} + uses: dmnemec/copy_file_to_another_repo_action@main + env: + API_TOKEN_GITHUB: ${{ secrets.CS_SYNC_TOKEN }} + with: + source_file: '_data/publications.yml' + destination_repo: 'csfbk/csfbk.github.io' + destination_folder: '_data/publications' + rename: 'publications_st.yml' + user_name: 'csfbk' + user_email: 'cs@fbk.eu' + - run: echo "Operation completed." diff --git a/.github/workflows/update-theses-cs.yml b/.github/workflows/update-theses-cs.yml index 55c3f226..e18e72ce 100644 --- a/.github/workflows/update-theses-cs.yml +++ b/.github/workflows/update-theses-cs.yml @@ -24,4 +24,21 @@ jobs: user_name: 'csfbk' user_email: 'cs@fbk.eu' + - name: Re-checkout on failure + if: ${{ failure() }} + uses: actions/checkout@v2 + + - name: Re-push on failure + if: ${{ failure() }} + uses: dmnemec/copy_file_to_another_repo_action@main + env: + API_TOKEN_GITHUB: ${{ secrets.CS_SYNC_TOKEN }} + with: + source_file: '_data/theses.yml' + destination_repo: 'csfbk/csfbk.github.io' + destination_folder: '_data/theses' + rename: 'theses_st.yml' + user_name: 'csfbk' + user_email: 'cs@fbk.eu' + - run: echo "Operation completed." From 8723acee573e6daea9364e3329a33cb1cad017f3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 09:12:09 +0000 Subject: [PATCH 2/2] Bump webrick from 1.8.1 to 1.8.2 Bumps [webrick](https://github.com/ruby/webrick) from 1.8.1 to 1.8.2. - [Release notes](https://github.com/ruby/webrick/releases) - [Commits](https://github.com/ruby/webrick/compare/v1.8.1...v1.8.2) --- updated-dependencies: - dependency-name: webrick dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 38d06064..1e328c33 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -270,7 +270,7 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (1.6.1) - webrick (1.8.1) + webrick (1.8.2) zeitwerk (2.6.17) PLATFORMS