Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: WyriHaximus/php-async-test-utilities
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7.0.3
Choose a base ref
...
head repository: WyriHaximus/php-async-test-utilities
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7.1.0
Choose a head ref
  • 8 commits
  • 3 files changed
  • 2 contributors

Commits on Aug 2, 2023

  1. Copy the full SHA
    9124bc8 View commit details
  2. Merge pull request #219 from WyriHaximus/add-issues-write-permission-…

    …for-label-enforcing
    
    Add issues write permissions for required label enforcing
    WyriHaximus authored Aug 2, 2023
    Copy the full SHA
    b267ead View commit details

Commits on Aug 10, 2023

  1. Copy the full SHA
    0a2171d View commit details
  2. Merge pull request #220 from WyriHaximus/Use-dev-package-renovate-config

    Use dev package renovate config
    WyriHaximus authored Aug 10, 2023
    Copy the full SHA
    07d6445 View commit details

Commits on Aug 11, 2023

  1. Copy the full SHA
    1e2e976 View commit details
  2. Merge pull request #221 from WyriHaximus/use-new-release-management-w…

    …orkflow-setup
    
    Use new release management workflow setup
    WyriHaximus authored Aug 11, 2023
    Copy the full SHA
    7584e65 View commit details
  3. Copy the full SHA
    2ae3f20 View commit details
  4. Merge pull request #222 from WyriHaximus/renovate/wyrihaximus-test-ut…

    …ilities-5.x-lockfile
    
    Update dependency wyrihaximus/test-utilities to v5.6.0
    WyriHaximus authored Aug 11, 2023
    Copy the full SHA
    32193b7 View commit details
Showing with 285 additions and 425 deletions.
  1. +1 −1 .github/renovate.json
  2. +12 −7 .github/workflows/{craft-release.yaml → release-managment.yaml}
  3. +272 −417 composer.lock
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>WyriHaximus/renovate-config:php-package"
"github>WyriHaximus/renovate-config:php-package-dev"
]
}
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
name: Create Release
env:
MILESTONE: ${{ github.event.milestone.title }}
name: Release Management
on:
pull_request:
types:
- opened
- labeled
- unlabeled
- synchronize
- reopened
milestone:
types:
- closed
permissions:
contents: write
issues: read
pull-requests: read
issues: write
pull-requests: write
jobs:
create-release:
release-managment:
name: Create Release
uses: WyriHaximus/github-workflows/.github/workflows/package-craft-release.yaml@main
uses: WyriHaximus/github-workflows/.github/workflows/package-release-managment.yaml@main
with:
milestone: ${{ github.event.milestone.title }}
description: ${{ github.event.milestone.title }}
Loading