Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def self.get_task_ids_from_git_log(from_ref, to_ref = "HEAD")

git_log
.gsub("\n", " ")
.scan(%r{\bTask/Issue URL:\s*https://app\.asana\.com[/0-9a-z]+\b})
.scan(%r{\b\*{2}?Task/Issue URL:\*{2}?\s*https://app\.asana\.com[/0-9a-z]+\b})
.map { |task_line| task_line.gsub(/.*(https.*)/, '\1') }
.map { |task_url| extract_asana_task_id(task_url, set_gha_output: false) }
.uniq
Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/ddg_apple_automation/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fastlane
module DdgAppleAutomation
VERSION = "2.2.1"
VERSION = "2.2.3"
end
end
14 changes: 13 additions & 1 deletion spec/asana_helper_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -617,6 +617,17 @@ def sanitize_asana_html_notes(content)
Description:
This privacy config update may update a published value so must be received on main thread.

commit e83fd007c0bdf054658068a79f5b7ea45d846468

Receive privacy config updates in AddressBarModel on main thread (#3574)
#{' '}
**Task/Issue URL:**#{' '}
#{' '}
https://app.asana.com/0/1201037661562251/1208804405760666/f
#{' '}
Description:
This privacy config update may update a published value so must be received on main thread.
#{' '}
commit 9587487662876eee3f2606cf5040d4ee80e0c0a7

Add expectation when checking email text field value (#3572)
Expand Down Expand Up @@ -650,7 +661,8 @@ def sanitize_asana_html_notes(content)
"1208589738888888",
"1208589738777777",
"1208589738666666",
"1208804405760977"
"1208804405760977",
"1208804405760666"
])
end

Expand Down