-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# devlooped/oss - Move format check for last devlooped/oss@7db501b - Make build matrix configurable per-repo devlooped/oss@391da5e - Rename matrix lookup job and steps devlooped/oss@cf8e339 - Always pass in auth headers to GH API devlooped/oss@a922d03 - Use BOT_ defaults consistently devlooped/oss@98919f7 - Ensure checkout before defaults devlooped/oss@721ee85 - Rework to pass secrets explicitly devlooped/oss@15e9486 - Ensure both author and committer match devlooped/oss@d94ddb1 - Use a lighter down arrow, docs tag devlooped/oss@4bd76ee - Bump to include action with fragment support devlooped/oss@c62cfb4 - Switch to new clean v1 devlooped/oss@e9b17b5 - Update to public bot defaults action devlooped/oss@b9671b9 - Add fallback GITHUB_TOKEN to bot defaults devlooped/oss@5406d90 - Use simple bash variable expansion devlooped/oss@acedd1d - Don't resolve includes for changelog changes devlooped/oss@7985d4e - Fix syntax for excluding one file devlooped/oss@5d05e54 - Use bot account for sync commit author devlooped/oss@1d3a2f4 - Resolve includes after file sync devlooped/oss@8f45cf2 - By default don't validate includes devlooped/oss@aed791a - Ignore errors creating the PR devlooped/oss@b97b8f1 # devlooped/.github - Simplify workflow, skip for bot accounts devlooped/.github@e347e5c # devlooped/sponsors - Refresh sponsors devlooped/sponsors@04f5dfb
- Loading branch information
Showing
11 changed files
with
134 additions
and
221 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,43 @@ | ||
name: +M▼ includes | ||
name: +Mᐁ includes | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- 'main' | ||
paths: | ||
- '**.md' | ||
- '!changelog.md' | ||
|
||
jobs: | ||
includes: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 🤖 defaults | ||
uses: devlooped/actions-bot@v1 | ||
with: | ||
name: ${{ secrets.BOT_NAME }} | ||
email: ${{ secrets.BOT_EMAIL }} | ||
gh_token: ${{ secrets.GH_TOKEN }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: 🤘 checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
token: ${{ env.GH_TOKEN }} | ||
|
||
- name: +M▼ includes | ||
uses: devlooped/actions-include@v4 | ||
- name: +Mᐁ includes | ||
uses: devlooped/actions-include@v1 | ||
|
||
- name: ✍ pull request | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
base: main | ||
branch: markdown-includes | ||
delete-branch: true | ||
commit-message: +M▼ includes | ||
title: +M▼ includes | ||
body: +M▼ includes | ||
labels: docs | ||
author: ${{ env.BOT_AUTHOR }} | ||
committer: ${{ env.BOT_AUTHOR }} | ||
commit-message: +Mᐁ includes | ||
title: +Mᐁ includes | ||
body: +Mᐁ includes | ||
token: ${{ env.GH_TOKEN }} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: sponsor ❤️ | ||
on: | ||
issues: | ||
types: [opened, edited, reopened] | ||
pull_request: | ||
types: [opened, edited, synchronize, reopened] | ||
|
||
jobs: | ||
sponsor: | ||
runs-on: ubuntu-latest | ||
if: ${{ !endsWith(github.event.sender.login, '[bot]') && !endsWith(github.event.sender.login, 'bot') }} | ||
steps: | ||
- name: 🤘 checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: ❤️ sponsor | ||
uses: devlooped/actions-sponsor@main | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.