Skip to content
This repository has been archived by the owner on Sep 23, 2022. It is now read-only.

(maint) Fix Project Sync #43

Merged
merged 1 commit into from
Aug 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Build status](https://ci.appveyor.com/api/projects/status/v7w84n21w9yjspq7/branch/master?svg=true)](https://ci.appveyor.com/project/puppetlabs/pdk-planning/branch/master)

# pdk-planning

A repository of roadmaps, feature proposals, and other planning resources for the [Puppet Development Kit].
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: '{build}'
max_jobs: 1
image: WMF 5
image: Visual Studio 2017
# We only need the latest
shallow_clone: true
branches:
Expand All @@ -27,5 +27,5 @@ build_script:
# Only trigger if the GTIHUB_TOKEN exists
# Only trigger the project sync on a forced or scheduled build, NOT per PR.
if ( ($null -ne $ENV:GITHUB_TOKEN) -and (($Env:APPVEYOR_SCHEDULED_BUILD -eq 'true') -or ($Env:APPVEYOR_FORCED_BUILD -eq 'true')) ) {
.\tools\SyncProjects.ps1
.\tools\SyncProjects.ps1
}
2 changes: 1 addition & 1 deletion tools/SyncProjects.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ try {
Import-Module JiraPS -ErrorAction Stop
}
catch {
Install-Module JiraPS -ErrorAction Stop
Install-Module JiraPS -ErrorAction Stop -RequiredVersion 2.11.1 -Force
Import-Module JiraPS -ErrorAction Stop
}

Expand Down