Skip to content

Commit 509e33a

Browse files
committed
Delete workflows
1 parent 60704ed commit 509e33a

File tree

5 files changed

+21
-86
lines changed

5 files changed

+21
-86
lines changed

β€Ž.github/workflows/add_to_octokit_project.ymlβ€Ž

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
name: Issue/PR response
2+
23
permissions:
34
issues: write
45
pull-requests: write
6+
57
on:
68
issues:
7-
types:
8-
- opened
9+
types: [reopened, opened]
910
pull_request_target:
10-
types:
11-
- opened
11+
types: [reopened, opened]
12+
1213
jobs:
14+
1315
respond-to-issue:
14-
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }}
16+
if: ${{ github.event.action == 'opened' && github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }}
1517
runs-on: ubuntu-latest
18+
1619
steps:
1720
- name: Determine issue or PR number
1821
id: extract
@@ -22,8 +25,19 @@ jobs:
2225
uses: peter-evans/create-or-update-comment@v4
2326
with:
2427
issue-number: ${{ steps.extract.outputs.NUMBER }}
25-
body: >
28+
body: |
2629
πŸ‘‹ Hi! Thank you for this contribution! Just to let you know, our GitHub SDK team does a round of issue and PR reviews twice a week, every Monday and Friday!
2730
We have a [process in place](https://github.com/octokit/.github/blob/main/community/prioritization_response.md#overview) for prioritizing and responding to your input.
2831
Because you are a part of this community please feel free to comment, add to, or pick up any issues/PRs that are labeled with `Status: Up for grabs`.
2932
You & others like you are the reason all of this works! So thank you & happy coding! πŸš€
33+
34+
add-to-project:
35+
runs-on: ubuntu-latest
36+
37+
steps:
38+
- uses: actions/[email protected]
39+
with:
40+
project-url: https://github.com/orgs/octokit/projects/10
41+
github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }}
42+
labeled: "Status: Stale"
43+
label-operator: NOT

β€Ž.github/workflows/dotnetcore.ymlβ€Ž renamed to β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build, test and publish
1+
name: Octokit.GraphQL CI
22

33
on:
44
push:

β€Ž.github/workflows/generate-schema.ymlβ€Ž

Lines changed: 0 additions & 28 deletions
This file was deleted.

β€Ž.github/workflows/integration-tests.ymlβ€Ž

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
Β (0)