Skip to content

Commit

Permalink
4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish authored Aug 11, 2023
1 parent 1348bac commit 090d4d1
Show file tree
Hide file tree
Showing 4 changed files with 608 additions and 1,292 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# .github/workflows/release.yml
name: Release

on:
pull_request:
types: [closed]

jobs:
build:
runs-on: ubuntu-latest
permissions: write-all
if: github.event.pull_request.merged
steps:
- name: Get Next Release
id: tag
uses: K-Phoen/semver-release-action@master
with:
release_strategy: none
release_branch: 4.x
tag_format: "%major%.%minor%.%patch%"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: echo 'Creating new release for ' ${{ steps.tag.outputs.tag }}
- name: Create Release
if: ${{ steps.tag.outputs.tag }}
uses: ncipollo/release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: ${{ steps.tag.outputs.tag }}
tag: ${{ steps.tag.outputs.tag }}
commit: ${{ github.sha }}
generateReleaseNotes: true
makeLatest: true
- uses: actions/checkout@v3
with:
ref: '4.x'
fetch-depth: 0
18 changes: 0 additions & 18 deletions .github/workflows/tag_commits_to_main.yml

This file was deleted.

9 changes: 1 addition & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,21 +45,14 @@
"cweagans/composer-patches": "^1.6",
"drupal/acquia_connector": "^4.0",
"drupal/acquia_purge": "^1.1",
"drupal/anchor_link": "^2.5",
"drupal/ckeditor_a11ychecker": "^1.0",
"drupal/ckeditor_balloonpanel": "^1.1",
"drupal/ckeditor_blockimagepaste": "^1.4",
"drupal/config_merge": "^1.0",
"drupal/config_update": "^1.7",
"drupal/core": "^9.0",
"drupal/core-composer-scaffold": "^9",
"drupal/core-recommended": "^9.0",
"drupal/fakeobjects": "^1.1",
"drupal/mysql56": "^1.1",
"drupal/paranoia": "^1.9",
"drush/drush": "^11.4",
"su-hkku/cardinal_service_profile": "^10.0",
"su-sws/stanford_profile": "10.x-dev"
"su-sws/stanford_profile": "^10.0"
},
"require-dev": {
"acquia/blt-drupal-test": "^1.0",
Expand Down
Loading

0 comments on commit 090d4d1

Please sign in to comment.