From 0a436f67ebee5617a057a5c26cd5205e59d685d2 Mon Sep 17 00:00:00 2001 From: Rubin Gerritsen Date: Sat, 30 Apr 2022 20:07:06 +0200 Subject: [PATCH 1/2] actions: Add manifest_updater This action will automatically create an update a manifest-PR to the main repository to simplify the process of updating the components of the main repository. Signed-off-by: Rubin Gerritsen --- .github/workflows/manifest_updater.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/manifest_updater.yml diff --git a/.github/workflows/manifest_updater.yml b/.github/workflows/manifest_updater.yml new file mode 100644 index 0000000000..907594b722 --- /dev/null +++ b/.github/workflows/manifest_updater.yml @@ -0,0 +1,21 @@ +name: Manifest_update +on: + - pull_request_target + +permissions: + actions: write + contents: write + pull-requests: write + repository-projects: write + +jobs: + manifest_update: + runs-on: ubuntu-latest + steps: + - uses: rugeGerritsen/action-manifest-update@main + with: + github-token: '${{ secrets.GITHUB_TOKEN }}' + module-path: '${{ github.repository }}' + manifest-repo-path: 'rugeGerritsen/sdk-nrf' + manifest-file: 'west.yml' + module-pull-nr: '${{ github.event.number }}' From 7b1db34a5ab18e06e7b89aebe9fb865b8b73bddf Mon Sep 17 00:00:00 2001 From: Rubin Gerritsen Date: Sat, 30 Apr 2022 20:12:51 +0200 Subject: [PATCH 2/2] Test --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index 13630b18fa..450864b87c 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,6 @@ .. _nrfxlib: + nrfxlib #######