Explorar el Código

Add github actions (#1470)

Co-authored-by: Paweł Kuna <[email protected]>
SyntaxJoker hace 2 años
padre
commit
116359b5aa
Se han modificado 2 ficheros con 45 adiciones y 0 borrados
  1. 19 0
      .github/workflows/add_to_project.yml
  2. 26 0
      .github/workflows/close_inactive.yml

+ 19 - 0
.github/workflows/add_to_project.yml

@@ -0,0 +1,19 @@
+name: Add new issues and pr to project
+
+on:
+  pull_request:
+    types:
+      - opened
+  issues:
+    types:
+      - opened
+
+jobs:
+  add-to-project:
+    name: Add new issue and pr to project
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/[email protected]
+        with:
+          project-url: https://github.com/orgs/tabler/projects/9/views/1
+          github-token: ${{ secrets.GITHUB_TOKEN }}

+ 26 - 0
.github/workflows/close_inactive.yml

@@ -0,0 +1,26 @@
+name: Close inactive issues and pr
+
+on:
+  schedule:
+    - cron: "00 11 * * *"
+
+jobs:
+  test:
+    runs-on: ubuntu-latest
+    permissions:
+      pull-requests: write
+      issues: write
+    steps:
+      - uses: actions/stale@v5
+        with:
+          days-before-issue-stale: 360
+          days-before-issue-close: 14
+          stale-issue-label: "stale"
+          stale-issue-message: "This issue is stale because it has been open for 360 days with no activity."
+          close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
+          repo-token: ${{ secrets.GITHUB_TOKEN }}
+          days-before-pr-stale: 360
+          days-before-pr-close: 14
+          stale-pr-label: "stale"
+          stale-pr-message: "This pr is stale because it has been open for 360 days with no activity."
+          close-pr-message: "This pr was closed because it has been inactive for 14 days since being marked as stale."