From e64c82611f24999b1af43f4490678b533d82122b Mon Sep 17 00:00:00 2001 From: bethbeza Date: Fri, 13 Dec 2024 19:37:32 -0500 Subject: [PATCH] update dependencies file deleted --- update-dependencies.yml | 49 ----------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 update-dependencies.yml diff --git a/update-dependencies.yml b/update-dependencies.yml deleted file mode 100644 index 6e4c44286f5..00000000000 --- a/update-dependencies.yml +++ /dev/null @@ -1,49 +0,0 @@ - -name: Automate Dependency Updates - -on: - push: - branches: - - "dependabot/*" - -jobs: - update-dependencies: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Set up Git - run: | - git config --global user.name "github-actions[bot]" - git config --global user.email "github-actions[bot]@users.noreply.github.com" - - - name: Create a new branch - run: | - git checkout -b update-branch - git push origin update-branch - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 - with: - token: ${{ secrets.PAT_TOKEN }} - branch: update-branch - title: "Automated Dependency Updates" - body: "Automated dependency updates from GitHub Actions." - base: main - commit-message: "Update dependencies" - - - name: Merge Pull Request - uses: actions/github-script@v6 - with: - script: | - const prNumber = context.payload.pull_request.number; - await github.pulls.merge({ - owner: context.repo.owner, - repo: context.repo.repo, - pull_number: prNumber, - merge_method: "squash" - }); - f github-token: ${{ secrets.PAT_TOKEN }} -:wq