Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@ jobs:
diff sbom_prev_normalized.json sbom_current_normalized.json || true
fi

# Generate a token to perform the commit in the next step
- name: Generate GitHub App token
id: app-token
uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
with:
app-id: ${{ secrets.TRANSLATION_APP_ID }}
private-key: ${{ secrets.TRANSLATION_APP_PRIVATE_KEY }}

# Commit the SBOM file only if it differs from master to avoid unnecessary commits
- name: Commit and push updated SBOM
if: steps.compare.outputs.no_changes == 'false'
Expand All @@ -107,4 +115,4 @@ jobs:
files: sbom.json
email: devops@owncloud.com
name: ownClouders
access_token: ${{ secrets.GH_PAT }}
access_token: ${{ steps.app-token.outputs.token }}
5 changes: 5 additions & 0 deletions changelog/unreleased/4818
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Enhancement: Workflow to use the translation-sync reusable workflow

A new workflow that uses the translation-sync reusable workflow has been added in order to update translations from transifex

https://github.com/owncloud/android/pull/4818
5 changes: 5 additions & 0 deletions changelog/unreleased/4824
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Change: Replace PATs for tokens generated by a GitHub app

PATs have been replaced by tokens generated by a GitHub app in order to not depend on personal setup

https://github.com/owncloud/android/pull/4824
5 changes: 5 additions & 0 deletions changelog/unreleased/4825
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Change: Use reusable workflow for Calens

A new reusable workflow for calens changelog changes has been added to the current workflow in order to be used by all clients

https://github.com/owncloud/android/pull/4825
Loading