From 0fadc7698eedf0d5f492a30b657f5013352f73e7 Mon Sep 17 00:00:00 2001 From: Sachin Panayil Date: Fri, 6 Dec 2024 13:45:21 -0500 Subject: [PATCH] Added Repolinter PR Action Signed-off-by: Sachin Panayil --- .github/workflows/repolinter_PR.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/repolinter_PR.yml diff --git a/.github/workflows/repolinter_PR.yml b/.github/workflows/repolinter_PR.yml new file mode 100644 index 0000000..0481fd5 --- /dev/null +++ b/.github/workflows/repolinter_PR.yml @@ -0,0 +1,21 @@ +name: 'Create a PR based on validation' + +on: + workflow_dispatch: {} + +jobs: + repolinter-action: + runs-on: ubuntu-latest + name: Run Repolinter + permissions: + contents: write + pull-requests: write + steps: + - name: Checkout Repo + uses: actions/checkout@v4 + - name: 'Run Repolinter' + uses: DSACMS/repolinter-actions@main + with: + output_type: 'pull-request' + token: ${{ secrets.REPOLINTER_AUTO_TOKEN}} + # The PAT needs full `repo` scope \ No newline at end of file