Skip to content

Commit

Permalink
Release/2.0 rc.1 (#484)
Browse files Browse the repository at this point in the history
* wip

* [automated, skip-ci] Autocommit of GitHub Actions-generated files.

* fix #482

* wip

* wip

* wip

* fixes

* Feature/test1 (#483)

* fixes

* testtisg

* wip

* test

* wip

* wip

* wip

* wip

* wip

* wip

* go

* Setting current dependencies

* bye

* only run this once
  • Loading branch information
romaninsh committed Nov 25, 2019
1 parent d557d93 commit b1e941d
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 129 deletions.
4 changes: 4 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
template: |
## What’s Changed
$CHANGES
29 changes: 29 additions & 0 deletions .github/workflows/bundler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Bundler

on:
create:
branches:
- 'release/*'

jobs:
autocommit:
runs-on: ubuntu-latest
container:
image: atk4/image:latest # https://github.com/atk4/image
steps:
- uses: actions/checkout@master
- run: |
sed -i -e '/atk4\/schema/s/dev-develop/\*/' composer.json
sed -i -e '/atk4\/dsql/d' composer.json
sed -i -e '/atk4\/core/d' composer.json
cat composer.json
composer require atk4/core atk4/dsql
composer update
- uses: teaminkling/autocommit@master
with:
commit-message: Setting current dependencies
- uses: ad-m/github-push-action@master
with:
branch: ${{ github.ref }}
github_token: ${{ secrets.GITHUB_TOKEN }}
23 changes: 0 additions & 23 deletions .github/workflows/changelog.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Release Drafter

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- develop

jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: toolmantim/release-drafter@v5.2.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
98 changes: 0 additions & 98 deletions .github/workflows/release.yml

This file was deleted.

4 changes: 0 additions & 4 deletions .github_changelog_generator

This file was deleted.

Empty file removed HISTORY.md
Empty file.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
],
"require": {
"php": ">=7.2.0",
"atk4/dsql": "dev-develop as 1.2.5",
"atk4/core": "dev-develop",
"ext-intl": "*"
"ext-intl": "*",
"atk4/core": "^1.3",
"atk4/dsql": "^1.2"
},
"require-dev": {
"atk4/schema": "dev-develop",
"atk4/schema": "*",
"phpunit/phpunit": "<6",
"phpunit/dbunit": ">=1.2",
"phpunit/phpcov": "*",
Expand Down

0 comments on commit b1e941d

Please sign in to comment.