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

Commit

Permalink
Merge branch 'release/1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Jul 27, 2021
2 parents 2441d76 + f07c223 commit 5848e30
Show file tree
Hide file tree
Showing 36 changed files with 1,876 additions and 2 deletions.
39 changes: 39 additions & 0 deletions .appveyor.yml
@@ -0,0 +1,39 @@
environment:
# Disable publishing to GitHub package repository, since it will fail for
# Cake.Issues.Reporting and Cake.Issues.PullRequests because an archived repo with that name exists.
GPR_SOURCE:

#---------------------------------#
# Build Image #
#---------------------------------#
image: Visual Studio 2019

#---------------------------------#
# Build Script #
#---------------------------------#
install:
# Update to latest NuGet version since we require 5.3.0 for embedded icon
- ps: nuget update -self

build_script:
- ps: .\build.ps1 -Target CI

# Tests
test: off

#---------------------------------#
# Branches to build #
#---------------------------------#
branches:
# Whitelist
only:
- develop
- main
- /release/.*/
- /hotfix/.*/

#---------------------------------#
# Build Cache #
#---------------------------------#
cache:
- tools -> recipe.cake
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
*.cs diff=csharp
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
@@ -0,0 +1,3 @@
# These owners will be the default owners for everything in the repo and
# will be requested for review when someone opens a pull request.
* @pascalberger
7 changes: 7 additions & 0 deletions .github/dependabot.yml
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: dotnet:nuget
directory: "/src"
schedule:
interval: live
open-pull-requests-limit: 10
8 changes: 8 additions & 0 deletions .gitignore
@@ -1,3 +1,11 @@
# Project specific

BuildArtifacts/

### Cake ###
tools/*
!tools/packages.config

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
Expand Down
35 changes: 35 additions & 0 deletions CONTRIBUTING.md
@@ -0,0 +1,35 @@
# Contribution Guidelines

This repository uses [GitFlow] with default configuration.
Development is happening on `develop` branch.

To contribute:

* Fork this repository.
* Create a feature branch from `develop`.
* Implement your changes.
* Push your feature branch.
* Create a pull request.

## Build

To build this package we are using Cake.

On Windows PowerShell run:

```powershell
./build
```

On OSX/Linux run:

```bash
./build.sh
```

## Release

See [Cake.Recipe documentation] how to create a new release of this addin.

[GitFlow]: (http://nvie.com/posts/a-successful-git-branching-model/)
[Cake.Recipe documentation]: https://cake-contrib.github.io/Cake.Recipe/docs/usage/creating-release
12 changes: 12 additions & 0 deletions GitReleaseManager.yaml
@@ -0,0 +1,12 @@
issue-labels-include:
- Breaking change
- Feature
- Bug
- Improvement
- Documentation
issue-labels-exclude:
- Build
issue-labels-alias:
- name: Documentation
header: Documentation
plural: Documentation
43 changes: 41 additions & 2 deletions README.md
@@ -1,2 +1,41 @@
# cake.issues.terraform
Addin for providing issues from Terraform to Cake.Issues Addin
# Terraform Provider for Cake.Issues Addin

This addin for the Cake Build Automation System allows you to read issues from `terraform validate`
using the [Cake Issues addin](https://github.com/cake-contrib/Cake.Issues).

For more information about this add-in see the [Cake.Issues website](https://cakeissues.net)
and for general information about the Cake build automation system see the [Cake website](http://cakebuild.net).

[![License](http://img.shields.io/:license-mit-blue.svg)](https://github.com/cake-contrib/Cake.Issues.Terraform/blob/feature/build/LICENSE)

## Information

| | Stable | Pre-release |
|:--:|:--:|:--:|
|GitHub Release|-|[![GitHub release](https://img.shields.io/github/release/cake-contrib/Cake.Issues.Terraform.svg)](https://github.com/cake-contrib/Cake.Issues.Terraform/releases/latest)|
|NuGet|[![NuGet](https://img.shields.io/nuget/v/Cake.Issues.Terraform.svg)](https://www.nuget.org/packages/Cake.Issues.Terraform)|[![NuGet](https://img.shields.io/nuget/vpre/Cake.Issues.Terraform.svg)](https://www.nuget.org/packages/Cake.Issues.Terraform)|

## Build Status

| | Develop | Main |
|:--:|:--:|:--:|
|AppVeyor Windows|[![Build status](https://ci.appveyor.com/api/projects/status/vmjky1dv3fwlpg7h/branch/develop?svg=true)](https://ci.appveyor.com/project/cakecontrib/cake-issues-terraform/branch/develop)|[![Build status](https://ci.appveyor.com/api/projects/status/vmjky1dv3fwlpg7h/branch/main?svg=true)](https://ci.appveyor.com/project/cakecontrib/cake-issues-terraform/branch/main)|
|Azure DevOps Windows|[![Build Status](https://dev.azure.com/cake-contrib/Cake.Issues.Terraform/_apis/build/status/cake-contrib.Cake.Issues.Terraform?branchName=develop&jobName=Windows)](https://dev.azure.com/cake-contrib/Cake.Issues.Terraform/_build/latest?definitionId=13?&branchName=develop)|[![Build Status](https://dev.azure.com/cake-contrib/Cake.Issues.Terraform/_apis/build/status/cake-contrib.Cake.Issues.Terraform?branchName=main&jobName=Windows)](https://dev.azure.com/cake-contrib/Cake.Issues.Terraform/_build/latest?definitionId=13&branchName=main)|

## Code Coverage

[![Coverage Status](https://coveralls.io/repos/github/cake-contrib/Cake.Issues.Terraform/badge.svg?branch=develop)](https://coveralls.io/github/cake-contrib/Cake.Issues.Terraform?branch=develop)

## Quick Links

- [Documentation](https://cakeissues.net)

## Discussion

For questions and to discuss ideas & feature requests, use the [GitHub discussions on the Cake GitHub repository](https://github.com/cake-build/cake/discussions), under the [Extension Q&A](https://github.com/cake-build/cake/discussions/categories/extension-q-a) category.

[![Join in the discussion on the Cake repository](https://img.shields.io/badge/GitHub-Discussions-green?logo=github)](https://github.com/cake-build/cake/discussions)

## Contributing

Contributions are welcome. See [Contribution Guidelines](CONTRIBUTING.md).
18 changes: 18 additions & 0 deletions azure-pipelines.yml
@@ -0,0 +1,18 @@
trigger:
- develop
- main
- release/*
- hotfix/*

pr:
- develop
- release/*
- hotfix/*

jobs:
- job: Windows
pool:
vmImage: 'windows-2019'
steps:
- powershell: ./build.ps1
displayName: 'Cake Build'

0 comments on commit 5848e30

Please sign in to comment.