Skip to content

Commit

Permalink
Add github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
obabec committed Jan 18, 2024
1 parent b0b7d6e commit cc0fb06
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @skodjob/maintainers
15 changes: 15 additions & 0 deletions .github/auto_assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Set to true to add reviewers to pull requests
addReviewers: true

# Set to true to add assignees to pull requests
addAssignees: author

# A list of reviewers to be added to pull requests (GitHub user name)
reviewers:
- kornys
- Frawless
- obabec

# A number of reviewers added to the pull request
# Set 0 to add all the reviewers (default: 0)
numberOfReviewers: 0
13 changes: 13 additions & 0 deletions .github/workflows/bot_pr_auto_assign.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Blog bot

on:
pull_request:
types:
- opened
- ready_for_review

jobs:
assign:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/[email protected]
22 changes: 22 additions & 0 deletions .github/workflows/bot_pr_mentions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Blog bot

on:
pull_request:
types:
- opened

jobs:
check-pull-request:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Notify maintainers for new PR
uses: actions/github-script@v4
with:
script: |
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Thanks for pull request!!!\n hey @kornys @Frawless @obabec'
})
Binary file added _images/perf-intro.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed _images/perf.jpg
Binary file not shown.

0 comments on commit cc0fb06

Please sign in to comment.