Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
#9 Migrate repository (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj authored Dec 27, 2023
1 parent fbefed8 commit 55ac8cf
Show file tree
Hide file tree
Showing 19 changed files with 127 additions and 313 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Default code owner

* @Senzing/senzing-azure
* @senzing-garage/senzing-mechanics
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

26 changes: 0 additions & 26 deletions .github/ISSUE_TEMPLATE/documentation_request.md

This file was deleted.

17 changes: 0 additions & 17 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

125 changes: 0 additions & 125 deletions .github/README_TEMPLATE/demonstration/README.md

This file was deleted.

9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
20 changes: 20 additions & 0 deletions .github/workflows/add-label-customer-submission.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: add-label-customer-submission.yaml
on:
issues:
types:
- opened
env:
MEMBER_LIST: ${{ secrets.SENZING_MEMBERS }}
CREATOR: ${{ github.actor }}
jobs:
automate-issues-labels:
name: Add customer-submission label to issue
runs-on: ubuntu-latest
steps:
- name: Add customer-submission label
env:
BOOL: ${{ contains( env.MEMBER_LIST, env.CREATOR ) }}
if: ${{ env.BOOL == 'false' }}
uses: andymckay/labeler@1.0.4
with:
add-labels: "customer-submission"
15 changes: 15 additions & 0 deletions .github/workflows/add-label-triage.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: add-label-triage.yaml
on:
issues:
types:
- reopened
- opened
jobs:
automate-issues-labels:
name: Add triage label to issue
runs-on: ubuntu-latest
steps:
- name: Add triage label
uses: andymckay/labeler@1.0.4
with:
add-labels: "triage"
21 changes: 21 additions & 0 deletions .github/workflows/add-to-project-garage-dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: add-to-project-garage-dependabot.yaml
on:
pull_request:
types:
- opened
- reopened
env:
CREATOR: ${{ github.event.pull_request.user.login }}
jobs:
add-to-project:
name: Add dependabot pull request to project
runs-on: ubuntu-latest
steps:
- name: Assign pull request to project
env:
BOOL: ${{ contains( env.CREATOR, 'dependabot' ) }}
if: ${{ env.BOOL == 'true' }}
uses: actions/add-to-project@v0.5.0
with:
project-url: https://github.com/orgs/senzing-garage/projects/3
github-token: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }}
16 changes: 16 additions & 0 deletions .github/workflows/add-to-project-garage.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: add-to-project-garage.yaml
on:
issues:
types:
- reopened
- opened
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- name: Assign issue to project
uses: actions/add-to-project@v0.5.0
with:
project-url: https://github.com/orgs/senzing-garage/projects/3
github-token: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }}
22 changes: 0 additions & 22 deletions .github/workflows/add-to-project-t-comm.yaml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/add-triage-label.yaml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/dependabot-approve-and-merge.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: dependabot-approve-and-merge.yaml
on:
pull_request:
branches: [main]
jobs:
dependabot-approve-and-merge:
permissions:
contents: write
pull-requests: write
uses: Senzing/build-resources/.github/workflows/dependabot-approve-and-merge.yaml@main
secrets:
SENZING_GITHUB_CODEOWNER_PR_RW_TOKEN: ${{ secrets.SENZING_GITHUB_CODEOWNER_PR_RW_TOKEN }}
35 changes: 0 additions & 35 deletions .github/workflows/identify-customer.yaml

This file was deleted.

Loading

0 comments on commit 55ac8cf

Please sign in to comment.