Skip to content

disable workflow#5163

Merged
ahpook merged 1 commit into
mainfrom
ahpook/disable-lint-workflow
May 14, 2026
Merged

disable workflow#5163
ahpook merged 1 commit into
mainfrom
ahpook/disable-lint-workflow

Conversation

@ahpook
Copy link
Copy Markdown
Contributor

@ahpook ahpook commented May 14, 2026

Please confirm this pull request meets the following requirements:

Which change are you proposing?

  • Suggesting edits to an existing topic or collection
  • Curating a new topic or collection
  • Something that does not neatly fit into the binary options above

Editing an existing topic or collection

I'm suggesting these edits to an existing topic or collection:

  • Image (and my file is *.png, square, dimensions 288x288, size <= 75 kB)
  • Content (and my changes are in index.md)

Please replace this line with an explanation of why you think these changes should be made.

Curating a new topic or collection

  • I've formatted my changes as a new folder directory, named for the topic or collection as it appears in the URL on GitHub (e.g. https://github.com/topics/[NAME] or https://github.com/collections/[NAME])
  • My folder contains a *.png image (if applicable) and index.md
  • All required fields in my index.md conform to the Style Guide and API docs: https://github.com/github/explore/tree/main/docs

Please replace this line with an explanation of why you think this topic or collection should be curated.

Something that does not neatly fit into the binary options above

  • My suggested edits are not about an existing topic or collection, or at least not a single one
  • My suggested edits are not about curating a new topic or collection, or at least not a single one
  • My suggested edits conform to the Style Guide and API docs: https://github.com/github/explore/tree/main/docs

Please replace this line with an explanation of your proposed changes.


Please note: we will close your PR without comment if you do not check the boxes above and provide ALL requested information.

@ahpook ahpook requested a review from a team as a code owner May 14, 2026 16:15
Copilot AI review requested due to automatic review settings May 14, 2026 16:15
@ahpook ahpook merged commit 78d477c into main May 14, 2026
16 checks passed
@ahpook ahpook deleted the ahpook/disable-lint-workflow branch May 14, 2026 16:17
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR disables the existing lint workflow by commenting out the workflow configuration in .github/workflows/lint.yml.

Changes:

  • Comments out the Lint workflow triggers.
  • Comments out RuboCop linting and auto-correction jobs.
Show a summary per file
File Description
.github/workflows/lint.yml Disables the GitHub Actions lint workflow by commenting out all workflow content.

Copilot's findings

Tip

Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

  • Files reviewed: 1/1 changed files
  • Comments generated: 2

Comment on lines +1 to +65
# name: Lint
#
# on:
# pull_request_target:
# workflow_dispatch:
# merge_group:
#
# jobs:
# lint:
# runs-on: ubuntu-latest
# permissions:
# contents: read
# steps:
# - uses: actions/checkout@v6.0.2
# with:
# ref: ${{ github.event.pull_request.head.sha || github.ref }}
# repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
#
# - name: Setup Ruby
# uses: ruby/setup-ruby@v1.306.0
# with:
# bundler-cache: false
#
# - name: Install dependencies
# run: bundle install
#
# - name: Run RuboCop
# run: |
# bundle exec rubocop
#
# autocorrect:
# if: github.event.pull_request.head.repo.full_name == github.repository
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - uses: actions/checkout@v6.0.2
# with:
# ref: ${{ github.event.pull_request.head.ref || github.ref }}
#
# - name: Setup Ruby
# uses: ruby/setup-ruby@v1.306.0
# with:
# bundler-cache: true
#
# - name: Run RuboCop with auto-correct
# run: |
# bundle exec rubocop -A
#
# - name: Check for changes
# run: |
# git config --global user.name "github-actions[bot]"
# git config --global user.email "github-actions[bot]@users.noreply.github.com"
# if git status --porcelain | grep .; then
# echo "changes=true" >> $GITHUB_ENV
# else
# echo "changes=false" >> $GITHUB_ENV
# fi
#
# - name: Commit and push changes
# if: env.changes == 'true'
# run: |
# git add .
# git commit -m "chore: auto-corrected with RuboCop"
# git push
Comment on lines +1 to +65
# name: Lint
#
# on:
# pull_request_target:
# workflow_dispatch:
# merge_group:
#
# jobs:
# lint:
# runs-on: ubuntu-latest
# permissions:
# contents: read
# steps:
# - uses: actions/checkout@v6.0.2
# with:
# ref: ${{ github.event.pull_request.head.sha || github.ref }}
# repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
#
# - name: Setup Ruby
# uses: ruby/setup-ruby@v1.306.0
# with:
# bundler-cache: false
#
# - name: Install dependencies
# run: bundle install
#
# - name: Run RuboCop
# run: |
# bundle exec rubocop
#
# autocorrect:
# if: github.event.pull_request.head.repo.full_name == github.repository
# runs-on: ubuntu-latest
# permissions:
# contents: write
# steps:
# - uses: actions/checkout@v6.0.2
# with:
# ref: ${{ github.event.pull_request.head.ref || github.ref }}
#
# - name: Setup Ruby
# uses: ruby/setup-ruby@v1.306.0
# with:
# bundler-cache: true
#
# - name: Run RuboCop with auto-correct
# run: |
# bundle exec rubocop -A
#
# - name: Check for changes
# run: |
# git config --global user.name "github-actions[bot]"
# git config --global user.email "github-actions[bot]@users.noreply.github.com"
# if git status --porcelain | grep .; then
# echo "changes=true" >> $GITHUB_ENV
# else
# echo "changes=false" >> $GITHUB_ENV
# fi
#
# - name: Commit and push changes
# if: env.changes == 'true'
# run: |
# git add .
# git commit -m "chore: auto-corrected with RuboCop"
# git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants