removed names.NewRandomK8() from the project completely #238
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Housekeeping | |
on: | |
issues: | |
types: [opened] | |
pull_request_target: | |
types: [opened, ready_for_review] | |
jobs: | |
add-to-project-with-knuu-label: | |
# ignore dependabot PRs | |
if: github.event.issues | |
name: Add issues to project and add knuu label | |
uses: celestiaorg/.github/.github/workflows/[email protected] | |
secrets: inherit | |
permissions: | |
issues: write | |
pull-requests: write | |
with: | |
run-labels: true | |
labels-to-add: "knuu" | |
run-projects: true | |
project-url: https://github.com/orgs/celestiaorg/projects/38 | |
auto-add-reviewer: | |
name: Auto add reviewer to PR | |
if: github.event.pull_request | |
uses: celestiaorg/.github/.github/workflows/[email protected] | |
secrets: inherit | |
permissions: | |
issues: write | |
pull-requests: write | |
with: | |
run-auto-request-review: true | |
auto-add-assignee: | |
# ignore dependabot PRs | |
if: ${{ github.event.pull_request && github.actor != 'dependabot[bot]' }} | |
name: Assign issue and PR to creator | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- name: Set pull_request url and creator login | |
# yamllint disable rule:line-length | |
run: | | |
echo "PR=${{ github.event.pull_request.html_url }}" >> $GITHUB_ENV | |
echo "CREATOR=${{ github.event.pull_request.user.login }}" >> $GITHUB_ENV | |
# yamllint enable rule:line-length | |
- name: Assign PR to creator | |
run: gh pr edit ${{ env.PR }} --add-assignee ${{ env.CREATOR }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |