Skip to content

Instantly share code, notes, and snippets.

View Alias2806's full-sized avatar
πŸ”Ž

Alias2806

πŸ”Ž
View GitHub Profile
@Alias2806
Alias2806 / LICENSE
Last active August 31, 2025 13:08
πŸš€ A unified set of scripts to automatically keep your πŸ–₯️ Windows development environment up-to-date at each login.
MIT License
Copyright (c) 2025 Alias2806
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@Alias2806
Alias2806 / README.MD
Last active August 31, 2025 09:12
πŸ› οΈ GitHub Actions: Semantic Version Bump via PR Labels (uv-based Python projects)

πŸ› οΈ GitHub Actions: Semantic Version Bump via PR Labels (uv-based Python projects)

This workflow automates semantic versioning for Python projects using uv, triggered by major, minor, or patch labels on pull requests. It ensures version bumps are intentional, traceable, and reversible when needed.

πŸ” Trigger Conditions:

  • Runs on pull_request events of type labeled or unlabeled
  • Executes only if:
    • A bump label (major, minor, patch) is added
    • A bump label is removed and the last commit was bot-authored
@Alias2806
Alias2806 / README.MD
Last active August 31, 2025 09:12
πŸ› οΈ GitHub Actions: Semantic Version Bump via PR Labels

πŸ› οΈ GitHub Actions: Semantic Version Bump via PR Labels

This workflow automates semantic versioning for Dart projects by responding to major, minor, or patch labels on pull requests. It ensures version bumps are traceable, reversible, and gated by explicit contributor intent.

πŸ” Trigger Conditions:

  • Runs on pull_request events of type labeled or unlabeled
  • Executes only if:
    • A bump label (major, minor, patch) is added
    • A bump label is removed and the last commit was bot-authored
@Alias2806
Alias2806 / actions.yml
Last active July 21, 2025 04:52
My Flutter Workflow
name: GitHub Actions
on:
workflow_dispatch:
permissions:
contents: write
pull-requests: write
actions: read
packages: read