-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #506 from mas-cli/releases/release-1.8.7
🔖 Release 1.8.7
- Loading branch information
Showing
37 changed files
with
1,101 additions
and
435 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--action-offline-mode | ||
--eventpath .github/event.json | ||
--container-architecture linux/amd64 | ||
--log-prefix-job-id | ||
--platform macos-15=-self-hosted | ||
--pull=false | ||
--reuse | ||
--secret-file .secrets |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"inputs": { | ||
"NAME": "Manual Workflow", | ||
"SOME_VALUE": "ABC" | ||
}, | ||
"release": { | ||
"name": "v1.8.6-beta.1: macOS only test build", | ||
"tag_name": "v1.8.7-beta.1", | ||
"target_commitish": "f8be3e9aaa6c78490277976f17041f2577f5dc21", | ||
"body": "This is a pre-release to facilitate testing for the following fix:\n\n - 🖥️ Only search, outdated and update macOS apps (#505, #496, #491, #336)" | ||
} | ||
} |
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,12 +1,13 @@ | ||
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes | ||
--- | ||
changelog: | ||
categories: | ||
- title: '🚀 Features' | ||
- title: "🚀 Features" | ||
labels: | ||
- '🆕 feature request' | ||
- title: '🐛 Bug Fixes' | ||
- "🆕 feature request" | ||
- title: "🐛 Bug Fixes" | ||
labels: | ||
- '🐛 bug' | ||
- "🐛 bug" | ||
- title: Changes | ||
labels: | ||
- '*' | ||
- "*" |
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,17 +1,21 @@ | ||
name: Danger | ||
# | ||
# .github/workflows/danger.yml | ||
# | ||
# https://docs.github.com/en/actions/reference/environment-variables#default-environment-variables | ||
--- | ||
name: danger | ||
on: | ||
pull_request: | ||
branches: [ main ] | ||
branches: [main] | ||
jobs: | ||
danger: | ||
name: Danger | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Danger | ||
# https://github.com/orgs/danger/packages/container/package/danger-swift | ||
uses: docker://ghcr.io/danger/danger-swift:3.12.3 | ||
with: | ||
args: --failOnErrors --no-publish-check | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/checkout@v4 | ||
- name: Danger | ||
# https://github.com/orgs/danger/packages/container/package/danger-swift | ||
uses: docker://ghcr.io/danger/danger-swift:3.18.0 | ||
with: | ||
args: --failOnErrors --no-publish-check | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Oops, something went wrong.