diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..3d37365 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @skodjob/maintainers \ No newline at end of file diff --git a/.github/auto_assign.yml b/.github/auto_assign.yml new file mode 100644 index 0000000..da0f058 --- /dev/null +++ b/.github/auto_assign.yml @@ -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 \ No newline at end of file diff --git a/.github/workflows/bot_pr_auto_assign.yaml b/.github/workflows/bot_pr_auto_assign.yaml new file mode 100644 index 0000000..a909f45 --- /dev/null +++ b/.github/workflows/bot_pr_auto_assign.yaml @@ -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/auto-assign-action@v1.2.0 \ No newline at end of file diff --git a/.github/workflows/bot_pr_mentions.yaml b/.github/workflows/bot_pr_mentions.yaml new file mode 100644 index 0000000..1ccc3da --- /dev/null +++ b/.github/workflows/bot_pr_mentions.yaml @@ -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' + }) diff --git a/_images/perf-intro.jpg b/_images/perf-intro.jpg new file mode 100644 index 0000000..7fd4b26 Binary files /dev/null and b/_images/perf-intro.jpg differ diff --git a/_images/perf.jpg b/_images/perf.jpg deleted file mode 100644 index 30c13d4..0000000 Binary files a/_images/perf.jpg and /dev/null differ