From dc2b143ea65b1157f927ba359d30dfa2e6eeba7d Mon Sep 17 00:00:00 2001 From: Bryan Behrenshausen Date: Tue, 8 Oct 2024 17:55:29 -0400 Subject: [PATCH] fix: remove elements for automating DCO check Signed-off-by: Bryan Behrenshausen --- .github/dco.yml | 5 ----- .github/workflows/githubstats.yml | 6 ++---- 2 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 .github/dco.yml diff --git a/.github/dco.yml b/.github/dco.yml deleted file mode 100644 index e23798c..0000000 --- a/.github/dco.yml +++ /dev/null @@ -1,5 +0,0 @@ -allowRemediationCommits: - individual: true - thirdParty: false -require: - members: false diff --git a/.github/workflows/githubstats.yml b/.github/workflows/githubstats.yml index 6e5d716..0bdebac 100644 --- a/.github/workflows/githubstats.yml +++ b/.github/workflows/githubstats.yml @@ -16,17 +16,15 @@ jobs: GITHUBSTATS: ${{ secrets.GITHUBSTATS }} run: | pip3 install PyGitHub # install PyGitHub package if necessary - pwd - ls cd js python3 githubstats.py - name: Commit changes run: | git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" - git commit -a -s -m "Update site database" + git commit -a -m "Update database" - name: Push changes uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} + branch: ${{ github.ref }} \ No newline at end of file