Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
first draft of actions (via #28)
Browse files Browse the repository at this point in the history
  • Loading branch information
eroshenkoam authored Sep 12, 2019
1 parent 3c51b4e commit 7610895
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 34 deletions.
18 changes: 18 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name-template: '$NEXT_MINOR_VERSION'
tag-template: '$NEXT_MINOR_VERSION'
categories:
- title: '🚀 New Features'
label: 'type:new feature'
- title: '🔬 Improvements'
label: 'type:improvement'
- title: '🐞 Bug Fixes'
label: 'type:bug'

change-template: '* $TITLE (via #$NUMBER) - @$AUTHOR'
template: |
$CHANGES
## 👀 Links
[Commits since $PREVIOUS_TAG](https://github.com/allure-framework/allure-android/compare/$PREVIOUS_TAG...master)
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Build

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Gradle Build
run: ./gradlew build
15 changes: 15 additions & 0 deletions .github/workflows/release-draft.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Release Draft

on:
push:
branches:
- master

jobs:
update_draft_release:
runs-on: ubuntu-latest
steps:
- uses: toolmantim/release-drafter@v5.2.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

0 comments on commit 7610895

Please sign in to comment.