https://github.com/xt0rted/actions
A list of my GitHub Actions and associated projects
https://github.com/xt0rted/actions
github-actions problem-matcher secrets-management workflows
Last synced: 12 months ago
JSON representation
A list of my GitHub Actions and associated projects
- Host: GitHub
- URL: https://github.com/xt0rted/actions
- Owner: xt0rted
- Created: 2020-02-16T13:15:59.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-04-22T02:30:17.000Z (about 1 year ago)
- Last Synced: 2025-04-22T04:13:58.821Z (about 1 year ago)
- Topics: github-actions, problem-matcher, secrets-management, workflows
- Homepage:
- Size: 60.5 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub Actions
## Contents
- [.NET](#net)
- [Frontend](#frontend)
- [Tools](#tools)
- [Repository Templates](#repository-templates)
- [Workflows](#workflows)
- [Samples](#samples)
- [NPM Packages](#npm-packages)
- [Miscellaneous](#miscellaneous)
## .NET
- [dotnet-format](https://github.com/xt0rted/dotnet-format) - A wrapper around `dotnet-format` used to lint and fix violations.
- [dotnet-format-problem-matcher](https://github.com/xt0rted/dotnet-format-problem-matcher) - A problem matcher to highlight `dotnet-format` errors in the build log and create annotations.
- [dotnet-sdk-updater](https://github.com/xt0rted/dotnet-sdk-updater) - Update `global.json` files with the latest SDK version.
- [dotnet-tool-restore](https://github.com/xt0rted/dotnet-tool-restore) - Restores dotnet local tools saved in the `.config/dotnet-tools.json` file.
## Frontend
- [stylelint-problem-matcher](https://github.com/xt0rted/stylelint-problem-matcher) - A problem matcher to highlight [stylelint](https://github.com/stylelint/stylelint) errors in the build log and create annotations.
## Tools
- [block-autosquash-commits-action](https://github.com/xt0rted/block-autosquash-commits-action) - Prevent merging pull requests that have commit messages starting with `fixup!` or `squash!`.
- [markdownlint-problem-matcher](https://github.com/xt0rted/markdownlint-problem-matcher) - A problem matcher to highlight [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) errors in the build log and create annotations.
- [pull-request-comment-branch](https://github.com/xt0rted/pull-request-comment-branch) - Gets the branch name and sha for pull request comments so you can act on that branch instead of the default branch.
- [secrets-sync](https://github.com/xt0rted/secrets-sync) - A GitHub Action to sync secrets across multiple repositories.
- [slash-command-action](https://github.com/xt0rted/slash-command-action) - Check comments for `/commands` with optional arguments and pass them to other steps in the workflow.
## Repository Templates
[Repository templates](https://help.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template) to make getting started with actions easier.
- [problem-matcher](https://github.com/xt0rted/problem-matcher) - A template action for quickly setting up problem matchers.
- [secrets-sync-template](https://github.com/xt0rted/secrets-sync-template) - Template to quickly get setup using [secrets-sync](https://github.com/xt0rted/secrets-sync).
## Workflows
- [Auto-merge Dependabot PRs](https://gist.github.com/xt0rted/46475099dc0a70ba63e16e3177407872) - An example workflow that can be used to auto-merge Dependabot PRs.
- [Update dotnet local tools](https://github.com/xt0rted/dotnet-tool-update-test) - An example two part workflow showing how you can keep dotnet local tools up to date.
## Samples
- [actions-cake-demo](https://github.com/xt0rted/actions-cake-demo) - Demo project using GitHub Actions and Cake to build & deploy a .NET Core website to Azure App Services.
## NPM Packages
- [@xt0rted/actions-toolkit](https://github.com/xt0rted/actions-toolkit) - Helper functions, scripts, and Typescript types for working with GitHub Actions.
- [github-actions-problem-matcher-typings](https://github.com/xt0rted/github-actions-problem-matcher-typings) - TypeScript typings for the GitHub Actions problem matcher file format.
- [stylelint-actions-formatters](https://github.com/xt0rted/stylelint-actions-formatters) - Stylelint report formatters that emit fully qualified file paths so annotations can be created with the problem matcher.
## Miscellaneous
- [annotation-previewer](https://github.com/xt0rted/annotation-previewer) - A page to [preview annotation commands](https://xt0rted.github.io/annotation-previewer/) without having to run a workflow.