Skip to content
This repository has been archived by the owner on Jun 9, 2021. It is now read-only.

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Dec 26, 2017
1 parent 4c004e3 commit 73e8e00
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 15 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@
Changelog of Pull Request Notifier for Bitbucket.

## Unreleased
### No issue
Doc

[f6397349f717ed0](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/f6397349f717ed0) Tomas Bjerre *2017-11-20 19:24:00*

## 3.18
### GitHub [#259](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/issues/259) Trigger for pull request DELETE
Support for delete-event

[02351bb60c95058](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/02351bb60c95058) Tomas Bjerre *2017-11-20 19:14:02*
[117a2e4a11d8f88](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/117a2e4a11d8f88) Tomas Bjerre *2017-11-20 19:15:24*

### No issue
Doc
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
npm install
grunt
atlas-mvn package
atlas-mvn package verify
52 changes: 49 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
<plugin>
<groupId>se.bjurr.gitchangelog</groupId>
<artifactId>git-changelog-maven-plugin</artifactId>
<version>1.50</version>
<version>1.52</version>
<executions>
<execution>
<id>GenerateGitChangelog</id>
Expand All @@ -154,7 +154,7 @@
<gitHubApi>https://api.github.com/repos/tomasbjerre/pull-request-notifier-for-bitbucket</gitHubApi>
<gitHubToken>${GITHUB_OAUTH2TOKEN}</gitHubToken>
<gitHubIssuePattern>#([0-9]*)</gitHubIssuePattern>
<filePath>CHANGELOG.md</filePath>
<file>CHANGELOG.md</file>
<ignoreTagsIfNameMatches>.*RC.*</ignoreTagsIfNameMatches>
<removeIssueFromMessage>true</removeIssueFromMessage>
<jiraIssuePattern>no pattern</jiraIssuePattern>
Expand Down Expand Up @@ -252,6 +252,52 @@ Changelog of Pull Request Notifier for Bitbucket.
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.5</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<xmlOutput>true</xmlOutput>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>se.bjurr.violations</groupId>
<artifactId>violations-maven-plugin</artifactId>
<version>1.3</version>
<configuration>
<maxViolations>99999999</maxViolations>
<minSeverity>INFO</minSeverity>
<!-- PER_FILE_COMPACT, COMPACT or VERBOSE -->
<detailLevel>VERBOSE</detailLevel>
<violations>
<violation>
<!-- Many more formats available, see: https://github.com/tomasbjerre/violations-lib -->
<parser>FINDBUGS</parser>
<reporter>Findbugs</reporter>
<folder>.</folder>
<pattern>.*/findbugsXml.*\.xml$</pattern>
</violation>
</violations>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>violations</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
Expand Down Expand Up @@ -286,4 +332,4 @@ Changelog of Pull Request Notifier for Bitbucket.
<quick.reload.version>2.0.0</quick.reload.version>
<amps.version>6.3.0</amps.version>
</properties>
</project>
</project>
20 changes: 10 additions & 10 deletions src/main/resources/admin.vm
Original file line number Diff line number Diff line change
Expand Up @@ -464,17 +464,17 @@
</div>
</fieldset>

<fieldset class="group">
<legend>
<span>Update Pull Request References</span>
</legend>
<div class="checkbox">
<input class="checkbox" type="checkbox" name="updatePullRequestRefs" value="true">&nbsp;
</div>
<div class="description">
<fieldset class="group">
<legend>
<span>Update Pull Request References</span>
</legend>
<div class="checkbox">
<input class="checkbox" type="checkbox" name="updatePullRequestRefs" value="true">&nbsp;
</div>
<div class="description">
Will update refs/pull-requests/{id}/from and refs/pull-requests/{id}/merge references in Git when Pull Request is rescoped.
</div>
</fieldset>
</div>
</fieldset>

<h4>Injection URL</h4>
<p>Optional configuration for retrieving a value from a pre URL invocation. A Jenkins installation may require the value of <i>http://JENKINS/crumbIssuer/api/xml?xpath=//crumb/text()</i> to be used in a request.</p>
Expand Down

0 comments on commit 73e8e00

Please sign in to comment.