Skip to content

Commit

Permalink
Add a feature and to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
pwtyler committed Dec 15, 2023
1 parent b126265 commit 3b33362
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,11 @@ jobs:
git commit -m "Release $VERSION"
git tag "$VERSION"
git push --tags
prepare-dev:
name: Prepare next dev release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Update Development Branch
run: bash ./bin/prepare-dev.sh
2 changes: 1 addition & 1 deletion .phpcs.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<!-- Value: replace the function, class, and variable prefixes used. Separate multiple prefixes with a comma. -->
<property name="prefixes" type="array" value="rossums-universal-robots"/>
<property name="prefixes" type="array" value="rur"/>
</properties>
</rule>
<rule ref="WordPress.WP.I18n">
Expand Down
1 change: 1 addition & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ See the robots hard at work.
## Changelog

### 0.1.1-dev
* Set Counter to 0 [19](https://github.com/pantheon-systems/plugin-pipeline-example/pull/19)

### 0.1.0 (6 June 2023)
* Initial Release [[1](https://github.com/pantheon-systems/plugin-pipeline-example/pull/1)]
10 changes: 9 additions & 1 deletion rossums-universal-robots.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,12 @@
* @package Rossums_Universal_Robots
*/

// Your code starts here.
/**
* Returns an int. It's a feature.
*
* @return int An integer.
* @since 0.1.1-dev
*/
function rur_counter() {
return 0;
}

0 comments on commit 3b33362

Please sign in to comment.