Skip to content

Commit 858f98f

Browse files
authored
1 parent aec4084 commit 858f98f

10 files changed

+80
-91
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

-38
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

-17
This file was deleted.

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

.github/workflows/add-labels-standardized.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'add labels standardized'
1+
name: add labels standardized
22

33
on:
44
issues:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: add to project community dependabot
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
env:
8+
CREATOR: ${{ github.event.pull_request.user.login }}
9+
GITHUB_TOKEN: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }}
10+
11+
jobs:
12+
add-to-project-dependabot:
13+
name: add issue to Senzing Community project
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: assign issue to project
18+
env:
19+
BOOL: ${{ contains( env.CREATOR, 'dependabot' ) }}
20+
if: ${{ env.BOOL == 'true' }}
21+
uses: senzing-factory/github-action-add-issue-to-project@v1
22+
with:
23+
project: "https://github.com/orgs/Senzing/projects/${{ vars.SENZING_PROJECT_COMMUNITY }}"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: add to project community
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- reopened
8+
9+
jobs:
10+
add-to-project:
11+
name: add issue to project
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: assign issue to project
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }}
18+
uses: senzing-factory/github-action-add-issue-to-project@v1
19+
with:
20+
project: "https://github.com/orgs/Senzing/projects/${{ vars.SENZING_PROJECT_COMMUNITY }}"
21+
column_name: "Backlog"

.github/workflows/add-to-project-t-comm.yaml

-22
This file was deleted.

.github/workflows/lint-workflows.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: lint workflows
2+
3+
on:
4+
push:
5+
branches-ignore: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
permissions:
10+
contents: read
11+
packages: read
12+
pull-requests: read
13+
statuses: write
14+
15+
jobs:
16+
lint-workflows:
17+
uses: senzing-factory/build-resources/.github/workflows/lint-workflows.yaml@v1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: move pr to done dependabot
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
types: [closed]
7+
8+
jobs:
9+
move-pr-to-done-dependabot:
10+
secrets:
11+
SENZING_GITHUB_PROJECT_RW_TOKEN: ${{ secrets.SENZING_GITHUB_PROJECT_RW_TOKEN }}
12+
uses: senzing-factory/build-resources/.github/workflows/move-pr-to-done.yaml@v1

PULL_REQUEST_TEMPLATE.md

-13
This file was deleted.

0 commit comments

Comments
 (0)