Linux Partitions Are Not Detected #224
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: 'Auto Labels' | |
on: | |
workflow_dispatch: | |
issues: | |
types: [labeled, unlabeled] | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
# Auto Labels - https://github.com/dessant/label-actions | |
auto_labels: | |
name: Handle Labels | |
runs-on: ubuntu-24.04 | |
if: github.actor == 'dakanji' | |
steps: | |
- uses: dessant/label-actions@v4 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
config-path: '.github/label-config.yml' | |
process-only: '' | |
# Check Labels - https://github.com/mheap/github-action-required-labels | |
handle_enhance_check: | |
name: Handle Enhance - Check | |
needs: [auto_labels] | |
runs-on: ubuntu-24.04 | |
if: ${{ always() && github.actor == 'dakanji' && (github.event.label.name == 'Invalid' || github.event.label.name == 'Not-Planned') }} | |
outputs: | |
status: ${{ steps.handle_enhance_check_main.outputs.status }} | |
steps: | |
- id: handle_enhance_check_main | |
uses: mheap/github-action-required-labels@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
mode: exactly | |
count: 1 | |
labels: "Enhancement" | |
exit_type: success | |
# Close Issue - https://github.com/actions-cool/issues-helper | |
handle_enhance_act: | |
name: Handle Enhance - Act | |
needs: [handle_enhance_check] | |
runs-on: ubuntu-24.04 | |
if: needs.handle_enhance_check.outputs.status == 'success' | |
steps: | |
- name: Tag Item | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'add-labels' | |
labels: 'Tagged' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
- name: Close Item | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'close-issue' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
# Check Labels - https://github.com/mheap/github-action-required-labels | |
handle_resolved_check_1: | |
name: Handle Resolved - Check1 | |
needs: [auto_labels] | |
runs-on: ubuntu-24.04 | |
if: ${{ always() && github.actor == 'dakanji' && github.event.label.name == 'Resolved' }} | |
outputs: | |
status: ${{ steps.handle_resolved_check_1_main.outputs.status }} | |
steps: | |
- id: handle_resolved_check_1_main | |
uses: mheap/github-action-required-labels@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
mode: minimum | |
count: 1 | |
labels: "Acknowledged, Known-Issue" | |
exit_type: success | |
# Check Labels - https://github.com/mheap/github-action-required-labels | |
handle_resolved_check_2: | |
name: Handle Resolved - Check2 | |
needs: [handle_resolved_check_1] | |
runs-on: ubuntu-24.04 | |
if: needs.handle_resolved_check_1.outputs.status == 'success' | |
outputs: | |
status: ${{ steps.handle_resolved_check_2_main.outputs.status }} | |
steps: | |
- id: handle_resolved_check_2_main | |
uses: mheap/github-action-required-labels@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
mode: maximum | |
count: 0 | |
labels: "Upstream" | |
exit_type: success | |
# Update Labels - https://github.com/actions-cool/issues-helper | |
handle_resolved_act: | |
name: Handle Resolved - Act | |
needs: [handle_resolved_check_2] | |
runs-on: ubuntu-24.04 | |
if: needs.handle_resolved_check_2.outputs.status == 'success' | |
steps: | |
- name: Remove Label | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'remove-labels' | |
labels: 'Acknowledged,Known-Issue' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.inputs.item_id }} | |
- name: Add Label | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'add-labels' | |
labels: 'Bug' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} |