From 954b5e9ddfb98157db6129afc74a910ea41b9bff Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 3 Dec 2024 09:18:40 -0500 Subject: [PATCH] Use the housekeeping app to update translation sources --- .github/workflows/update-translation-strings.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/update-translation-strings.yml b/.github/workflows/update-translation-strings.yml index bcd68c887..e78cd4296 100644 --- a/.github/workflows/update-translation-strings.yml +++ b/.github/workflows/update-translation-strings.yml @@ -18,8 +18,17 @@ jobs: NETBOX_CONFIGURATION: netbox.configuration_testing steps: + - name: Create app token + uses: actions/create-github-app-token@v1 + id: app-token + with: + app-id: 1076524 + private-key: ${{ secrets.HOUSEKEEPING_SECRET_KEY }} + - name: Check out repo uses: actions/checkout@v4 + with: + token: ${{ steps.app-token.outputs.token }} - name: Set up Python uses: actions/setup-python@v5