$Gist.reference</> #result for Stupid de queri.pip</> Git - sparse-checkout Documentation (Behavior B) Users want a sparse working tree, but are working in a larger whole change your sparse-checkout into a nearly dense one. Naturally, that tends to Subcommand-dependent defaults different defaults depending on the command for the desired behavior : Commands Implementation Questions values and description be? "sparse" (behavior A), "worktree-sparse-history-dense" (behavior B), "dense" (behavior Category: Reference About this site Patches, suggestions, and comments are welcome. Git is a member of Software Freedom Conservancy/ #30663
This file contains hidden or 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: Close issue/PR on adding invalid label | |
| # **What it does**: This action closes invalid pull requests in the open-source repository. | |
| # **Why we have it**: We get lots of spam in the open-source repository. | |
| # **Who does it impact**: Open-source contributors. | |
| on: | |
| issues: | |
| types: [labeled] | |
| # Needed in lieu of `pull_request` so that PRs from a fork can be | |
| # closed when marked as invalid. | |
| pull_request_target: | |
| types: [labeled] | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| close-on-adding-invalid-label: | |
| if: github.repository == 'github/docs' && github.event.label.name == 'invalid' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Close issue | |
| if: ${{ github.event_name == 'issues' }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| ISSUE_URL: ${{ github.event.issue.html_url }} | |
| run: gh issue close "$ISSUE_URL" | |
| - name: Close PR | |
| if: ${{ github.event_name == 'pull_request_target' }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| run: gh pr close "$PR_URL" | |
| - name: Check out repo | |
| if: ${{ failure() && github.event_name != 'pull_request_target' }} | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: ./.github/actions/slack-alert | |
| if: ${{ failure() && github.event_name != 'pull_request_target' }} | |
| with: | |
| slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} |