8000 ci: Merge back 4.1.0.rc5 build into release/4.1.x by fsbraun · Pull Request #7720 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

ci: Merge back 4.1.0.rc5 build into release/4.1.x #7720

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Dec 12, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Create releases.yml
  • Loading branch information
fsbraun authored Dec 11, 2023
commit a90a7c4b4d054680a430f34ec83721b462512f0b
22 changes: 22 additions & 0 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Comment on PRs into release/* branches

on:
pull_request:
branches:
- release/*

jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Comment on PR
uses: actions/github-script@v5
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Hi there!\n\nPlease remember to **MERGE COMMIT** pull requests from `develop` or `develop-4`!\n\n**Do not SQUASH** commits to preserve history for the changelog.'
})
0