forked from release-drafter/release-drafter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
75 additions
and
234 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
updates: | ||
- path: README.md | ||
pattern: 'uses = "release-drafter/release-drafter@(.*)"' | ||
- path: README.md | ||
pattern: 'uses = "release-drafter/release-drafter@(.*)"' |
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,4 +1,4 @@ | ||
on: | ||
on: | ||
issue_comment: | ||
types: [created] | ||
name: Automatic Rebase | ||
|
@@ -8,13 +8,13 @@ jobs: | |
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
with: | ||
fetch-depth: 0 | ||
- name: Automatic Rebase | ||
uses: cirrus-actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/checkout@master | ||
with: | ||
fetch-depth: 0 | ||
- name: Automatic Rebase | ||
uses: cirrus-actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# https://github.community/t5/GitHub-Actions/Workflow-is-failing-if-no-job-can-be-ran-due-to-condition/m-p/38186#M3250 | ||
always_job: | ||
name: Always run job | ||
|
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 @@ | ||
config-with-yaml-exception.yml |
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 |
---|---|---|
|
@@ -5,4 +5,4 @@ runs: | |
image: 'Dockerfile' | ||
branding: | ||
icon: edit-2 | ||
color: orange | ||
color: orange |
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,139 +1,8 @@ | ||
# This is a GitHub App Manifest. These settings will be used by default when | ||
# initially configuring your GitHub App. | ||
# | ||
# NOTE: changing this file will not update your GitHub App settings. | ||
# You must visit github.com/settings/apps/your-app-name to edit them. | ||
# | ||
# Read more about configuring your GitHub App: | ||
# https://probot.github.io/docs/development/#configuring-a-github-app | ||
# | ||
# Read more about GitHub App Manifests: | ||
# https://developer.github.com/apps/building-github-apps/creating-github-apps-from-a-manifest/ | ||
|
||
# The list of events the GitHub App subscribes to. | ||
# Uncomment the event names below to enable them. | ||
default_events: | ||
# - check_run | ||
# - check_suite | ||
# - commit_comment | ||
# - create | ||
# - delete | ||
# - deployment | ||
# - deployment_status | ||
# - fork | ||
# - gollum | ||
# - issue_comment | ||
# - issues | ||
# - label | ||
# - milestone | ||
# - member | ||
# - membership | ||
# - org_block | ||
# - organization | ||
# - page_build | ||
# - project | ||
# - project_card | ||
# - project_column | ||
# - public | ||
# - pull_request | ||
# - pull_request_review | ||
# - pull_request_review_comment | ||
- push | ||
# - release | ||
# - repository | ||
# - repository_import | ||
# - status | ||
# - team | ||
# - team_add | ||
# - watch | ||
|
||
# The set of permissions needed by the GitHub App. The format of the object uses | ||
# the permission name for the key (for example, issues) and the access type for | ||
# the value (for example, write). | ||
# Valid values are `read`, `write`, and `none` | ||
- push | ||
default_permissions: | ||
# Repository creation, deletion, settings, teams, and collaborators. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-administration | ||
# administration: read | ||
|
||
# Checks on code. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-checks | ||
# checks: write | ||
|
||
# Repository contents, commits, branches, downloads, releases, and merges. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-contents | ||
contents: write | ||
|
||
# Deployments and deployment statuses. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-deployments | ||
# deployments: read | ||
|
||
# Issues and related comments, assignees, labels, and milestones. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-issues | ||
# issues: write | ||
|
||
# Search repositories, list collaborators, and access repository metadata. | ||
# https://developer.github.com/v3/apps/permissions/#metadata-permissions | ||
metadata: read | ||
|
||
# Retrieve Pages statuses, configuration, and builds, as well as create new builds. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-pages | ||
# pages: read | ||
|
||
# Pull requests and related comments, assignees, labels, milestones, and merges. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-pull-requests | ||
pull_requests: read | ||
|
||
# Manage the post-receive hooks for a repository. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-repository-hooks | ||
# repository_hooks: read | ||
|
||
# Manage repository projects, columns, and cards. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-repository-projects | ||
# repository_projects: read | ||
|
||
# Retrieve security vulnerability alerts. | ||
# https://developer.github.com/v4/object/repositoryvulnerabilityalert/ | ||
# vulnerability_alerts: read | ||
|
||
# Commit statuses. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-statuses | ||
# statuses: read | ||
|
||
# Organization members and teams. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-members | ||
# members: read | ||
|
||
# View and manage users blocked by the organization. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-organization-user-blocking | ||
# organization_user_blocking: read | ||
|
||
# Manage organization projects, columns, and cards. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-organization-projects | ||
# organization_projects: read | ||
|
||
# Manage team discussions and related comments. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-team-discussions | ||
# team_discussions: read | ||
|
||
# Manage the post-receive hooks for an organization. | ||
# https://developer.github.com/v3/apps/permissions/#permission-on-organization-hooks | ||
# organization_hooks: read | ||
|
||
# Get notified of, and update, content references. | ||
# https://developer.github.com/v3/apps/permissions/ | ||
# organization_administration: read | ||
|
||
|
||
# The name of the GitHub App. Defaults to the name specified in package.json | ||
# name: My Probot App | ||
|
||
# The homepage of your GitHub App. | ||
url: https://github.com/wolfeidau/release-drafter-serverless | ||
|
||
# A description of the GitHub App. | ||
# description: A description of my awesome app | ||
|
||
# Set to true when your GitHub App is available to the public or false when it is only accessible to the owner of the app. | ||
# Default: true | ||
public: true |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ branches: | |
template: | | ||
# What's Changed | ||
$CHANGES | ||
$CHANGES |
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,5 +1,5 @@ | ||
template: | | ||
Changes: | ||
$CHANGES | ||
Previous tag: '$PREVIOUS_TAG' |
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 |
---|---|---|
|
@@ -7,4 +7,4 @@ categories: | |
- label: feature | ||
title: 🚀 Features | ||
- label: fix | ||
title: 🐛 Bug Fixes | ||
title: 🐛 Bug Fixes |
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,3 +1,3 @@ | ||
template: '$CHANGES' | ||
no-changes-template: '* No changes mmkay' | ||
change-template: "* Change: #$NUMBER '$TITLE' @$AUTHOR" | ||
change-template: "* Change: #$NUMBER '$TITLE' @$AUTHOR" |
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 +1 @@ | ||
template: "A big thanks to: $CONTRIBUTORS" | ||
template: 'A big thanks to: $CONTRIBUTORS' |
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 |
---|---|---|
|
@@ -25,4 +25,4 @@ version-resolver: | |
- 'patch' | ||
default: minor | ||
exclude-labels: | ||
- skip-changelog | ||
- skip-changelog |
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 |
---|---|---|
|
@@ -25,4 +25,4 @@ version-resolver: | |
- 'patch' | ||
default: minor | ||
exclude-labels: | ||
- skip-changelog | ||
- skip-changelog |
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 |
---|---|---|
|
@@ -25,4 +25,4 @@ version-resolver: | |
- 'PAT' | ||
default: minor | ||
exclude-labels: | ||
- skip-changelog | ||
- skip-changelog |
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 |
---|---|---|
|
@@ -25,4 +25,4 @@ version-resolver: | |
- 'patch' | ||
default: minor | ||
exclude-labels: | ||
- skip-changelog | ||
- skip-changelog |
2 changes: 1 addition & 1 deletion
2
test/fixtures/config/config-with-major-minor-patch-version-template.yml
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,4 +1,4 @@ | ||
template: Placeholder with example. Automatically calculated values are next major=$NEXT_MAJOR_VERSION, minor=$NEXT_MINOR_VERSION, patch=$NEXT_PATCH_VERSION | ||
name-template: "v$NEXT_PATCH_VERSION (Code name: Placeholder)" | ||
name-template: 'v$NEXT_PATCH_VERSION (Code name: Placeholder)' | ||
tag-template: v$NEXT_PATCH_VERSION | ||
version-template: $MAJOR.$MINOR.$PATCH |
2 changes: 1 addition & 1 deletion
2
test/fixtures/config/config-with-major-minor-version-template.yml
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,4 +1,4 @@ | ||
template: Placeholder with example. Automatically calculated values are next major=$NEXT_MAJOR_VERSION, minor=$NEXT_MINOR_VERSION, patch=$NEXT_PATCH_VERSION | ||
name-template: "v$NEXT_MINOR_VERSION (Code name: Placeholder)" | ||
name-template: 'v$NEXT_MINOR_VERSION (Code name: Placeholder)' | ||
tag-template: v$NEXT_MINOR_VERSION | ||
version-template: $MAJOR.$MINOR |
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,4 +1,4 @@ | ||
template: Placeholder with example. Automatically calculated values are next major=$NEXT_MAJOR_VERSION, minor=$NEXT_MINOR_VERSION, patch=$NEXT_PATCH_VERSION | ||
name-template: "v$NEXT_MAJOR_VERSION (Code name: Placeholder)" | ||
name-template: 'v$NEXT_MAJOR_VERSION (Code name: Placeholder)' | ||
tag-template: v$NEXT_MAJOR_VERSION | ||
version-template: $MAJOR |
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,3 +1,3 @@ | ||
template: Placeholder with example. Automatically calculated values are next major=$NEXT_MAJOR_VERSION, minor=$NEXT_MINOR_VERSION, patch=$NEXT_PATCH_VERSION | ||
name-template: "v$NEXT_PATCH_VERSION (Code name: Placeholder)" | ||
name-template: 'v$NEXT_PATCH_VERSION (Code name: Placeholder)' | ||
tag-template: v$NEXT_PATCH_VERSION |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ sort-by: 'title' | |
template: | | ||
# What's Changed | ||
$CHANGES | ||
$CHANGES |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ sort-direction: 'ascending' | |
template: | | ||
# What's Changed | ||
$CHANGES | ||
$CHANGES |
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,4 +1,4 @@ | ||
template: | | ||
# What's Changed | ||
$CHANGES | ||
$CHANGES |
Oops, something went wrong.