Skip to content

Commit

Permalink
Automate Issue and PR Management using GitHub Actions (AntonOsika#605)
Browse files Browse the repository at this point in the history
* Add GitHub Actions workflow for automation tasks

* Removed extra newline at the end of the file

* Added a newline at the end of the file

* Added a newline character at the end of the file

* Removed unnecessary newline character in automation.yml

* Added newline at the end of the file

* Removed extra newline character at the end of the file

* Updated .github/workflows/automation.yml

* Added a newline at the end of the file

* Removed trailing spaces and added newline at end of file

* Removed trailing spaces and added newline at end of file

---------

Co-authored-by: sweep-ai[bot] <128439645+sweep-ai[bot]@users.noreply.github.com>
  • Loading branch information
sweep-ai[bot] authored Aug 19, 2023
1 parent 22ad1cf commit 577cc31
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/automation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Automation Workflow

on:
schedule:
- cron: '0 0 * * *'
issues:
types: [opened, edited, reopened]
pull_request:
types: [opened, edited, reopened]

jobs:
mark-stale-issues:
runs-on: ubuntu-latest
steps:
- name: Mark stale issues
uses: actions/stale@v4
with:
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.'
days-before-stale: 60

# Add additional jobs as needed
# job-name:
# runs-on: ubuntu-latest
# steps:
# - name: Job step name
# uses: action-name@version
# with:
# parameter1: value1
#



0 comments on commit 577cc31

Please sign in to comment.