Skip to content

Commit

Permalink
Merge branch 'master' into hana-provider
Browse files Browse the repository at this point in the history
  • Loading branch information
mrylov committed Dec 28, 2020
2 parents 44fec96 + 14136a1 commit 61fbdcf
Show file tree
Hide file tree
Showing 625 changed files with 28,192 additions and 6,982 deletions.
50 changes: 0 additions & 50 deletions .github/stale.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/release.yml
@@ -0,0 +1,31 @@
name: Release 🚀

on:
push:
tags:
- 'final-*_*_*'

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:

- name: Prepare release names
run: |
VERSION_CHANGELOG=$(echo ${{ github.ref }} | cut -d '-' -f 2 | cut -d '_' -f1,2 | sed 's/_/\./g')
echo "version_url=https://changelog.qgis.org/en/qgis/version/${VERSION_CHANGELOG}" >> $GITHUB_ENV
VERSION_NAME=$(echo ${{ github.ref }} | cut -d '-' -f 2 | sed 's/_/\./g')
echo "version_name=${VERSION_NAME}" >> $GITHUB_ENV
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ env.version_name }}
body: ${{ env.version_url }}
draft: false
prerelease: false
42 changes: 42 additions & 0 deletions .github/workflows/stale_issues.yml
@@ -0,0 +1,42 @@
name: "Handle stale issues"
on:
schedule:
- cron: "30 1 * * *"

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: >
The QGIS project highly values your report and would love to see it addressed.
However, this issue has been left in feedback mode for the last 14 days and is
being automatically marked as "stale".
If you would like to continue with this issue, please provide any missing information
or answer any open questions. If you could resolve the issue yourself meanwhile,
please leave a note for future readers with the same problem and close the issue.
In case you should have any uncertainty, please leave a comment and we will be
happy to help you proceed with this issue.
If there is no further activity on this issue, it will be closed in a week.
close-issue-message: >
While we hate to see this happen, this Issue has been automatically closed because
it has not had any activity in the last 42 days despite being marked as feedback.
If this issue should be reconsidered, please follow the guidelines in the previous
comment and reopen this issue.
Or, if you have any further questions, there are also
[further support channels](https://www.qgis.org/en/site/forusers/support.html)
that can help you.
stale-issue-label: 'stale'
only-labels: 'feedback'
days-before-stale: 14
days-before-close: 28
53 changes: 53 additions & 0 deletions .github/workflows/stale_pr.yml
@@ -0,0 +1,53 @@
name: "Handle stale pull requests"
on:
schedule:
- cron: "30 2 * * *"

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: >
The QGIS project highly values your contribution and would love to see
this work merged!
Unfortunately this PR has not had any activity in the last 14 days and
is being automatically marked as "stale".
If you think this pull request should be merged, please check
- that all unit tests are passing
- that all comments by reviewers have been addressed
- that there is enough information for reviewers, in particular
- link to any issues which this pull request fixes
- add a description of workflows which this pull request fixes
- add screenshots if applicable
- that you have written unit tests where possible
In case you should have any uncertainty, please leave a comment and we will
be happy to help you proceed with this pull request.
If there is no further activity on this pull request, it will be closed in a
week.
close-pr-message: >
While we hate to see this happen, this PR has been automatically closed because
it has not had any activity in the last 21 days. If this pull request should be
reconsidered, please follow the guidelines in the previous comment and reopen
this pull request. Or, if you have any further questions, just ask! We love to
help, and if there's anything the QGIS project can do to help push this PR forward
please let us know how we can assist.
stale-pr-label: 'stale'
exempt-pr-labels: 'Merge After Thaw'
days-before-stale: 14
days-before-close: 7
3 changes: 3 additions & 0 deletions CMakeLists.txt
Expand Up @@ -413,6 +413,9 @@ if(WITH_CORE)
endif()

if (WITH_PDAL)
if (NOT WITH_EPT)
message(FATAL_ERROR "PDAL provider cannot be built with EPT disabled")
endif()
find_package(PDAL) # PDAL provider
endif()
if (PDAL_FOUND)
Expand Down

0 comments on commit 61fbdcf

Please sign in to comment.